github.com/evanw/esbuild/pkg/api.BuildOptions.Outdir (field)

8 uses

	github.com/evanw/esbuild/pkg/api (current package)
		api.go#L251: 	Outdir            string
		api_impl.go#L655: 		AbsOutputDir:          validatePath(log, realFS, buildOpts.Outdir, "outdir path"),
		serve_other.go#L443: 	if buildOptions.Outdir == "" && buildOptions.Outfile == "" {
		serve_other.go#L444: 		buildOptions.Outdir = realFS.Join(realFS.Cwd(), "...")
		serve_other.go#L448: 		if buildOptions.Outdir != "" {
		serve_other.go#L449: 			if absPath, ok := realFS.Abs(buildOptions.Outdir); ok {
		serve_other.go#L452: 				return ServeResult{}, fmt.Errorf("Invalid outdir path: %s", buildOptions.Outdir)

	golang.org/x/pkgsite/internal/static
		static.go#L47: 		Outdir:      scriptDir,