github.com/evanw/esbuild/internal/bundler.linkerContext.fs (field)

17 uses

	github.com/evanw/esbuild/internal/bundler (current package)
		linker.go#L63: 	fs          fs.FS
		linker.go#L387: 		fs:                fs,
		linker.go#L740: 				crossChunkAbsPaths[i] = c.fs.Join(c.options.AbsOutputDir, relPath)
		linker.go#L777: 	relPath, ok := c.fs.Rel(fromRelDir, toRelPath)
		linker.go#L2734: 			baseName = c.fs.Base(c.options.AbsOutputFile)
		linker.go#L2739: 			} else if relPath, ok := c.fs.Rel(c.options.AbsOutputBase, source.KeyPath.Text); ok {
		linker.go#L2740: 				relDir = c.fs.Dir(relPath)
		linker.go#L2741: 				baseName = c.fs.Base(relPath)
		linker.go#L2764: 				baseName = c.fs.Base(source.KeyPath.Text)
		linker.go#L2768: 			ext := c.fs.Ext(baseName)
		linker.go#L3656: 	chunkAbsDir := c.fs.Join(c.options.AbsOutputDir, chunk.relDir)
		linker.go#L4037: 					AbsPath:           c.fs.Join(c.options.AbsOutputDir, sourceMapRelDir, sourceMapBaseName),
		linker.go#L4085: 			AbsPath:           c.fs.Join(c.options.AbsOutputDir, chunk.relPath()),
		linker.go#L4320: 			AbsPath:           c.fs.Join(c.options.AbsOutputDir, chunk.relPath()),
		linker.go#L4493: 				path.Text = c.fs.Join(c.fs.Dir(file.source.KeyPath.Text), source)
		linker.go#L4519: 			if relPath, ok := c.fs.Rel(chunkAbsDir, item.path.Text); ok {