package jsconfig

import "github.com/gohugoio/hugo/resources/jsconfig"

Index

Types

type Builder

type Builder struct {
	// contains filtered or unexported fields
}

Builder builds a jsconfig.json file that, currently, is used only to assist IntelliSense in editors.

func NewBuilder

func NewBuilder() *Builder

NewBuilder creates a new Builder.

func (*Builder) AddSourceRoot

func (b *Builder) AddSourceRoot(root string)

AddSourceRoot adds a new source root. This method is thread safe.

func (*Builder) Build

func (b *Builder) Build(dir string) *Config

Build builds a new Config with paths relative to dir. This method is thread safe.

type CompilerOptions

type CompilerOptions struct {
	BaseURL string              `json:"baseUrl"`
	Paths   map[string][]string `json:"paths"`
}

CompilerOptions holds compilerOptions for jsonconfig.json.

type Config

type Config struct {
	CompilerOptions CompilerOptions `json:"compilerOptions"`
}

Config holds the data for jsconfig.json.

Source Files

jsconfig.go

Version
v0.144.2 (latest)
Published
Feb 19, 2025
Platform
linux/amd64
Imports
3 packages
Last checked
13 hours ago

Tools for package owners.