const github.com/evanw/esbuild/internal/config.ModePassThrough

12 uses

	github.com/evanw/esbuild/internal/config (current package)
		config.go#L158: 	ModePassThrough Mode = iota

	github.com/evanw/esbuild/internal/bundler
		linker.go#L512: 			if repr.ast.HasLazyExport && c.options.Mode == config.ModePassThrough {
		linker.go#L625: 	if c.options.Mode == config.ModePassThrough {
		linker.go#L3048: 	shouldStripExports := c.options.Mode != config.ModePassThrough || !file.isEntryPoint
		linker.go#L3490: 	if c.options.Mode != config.ModePassThrough {

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L9405: 					if p.options.mode == config.ModePassThrough {
		js_parser.go#L9684: 	if p.options.mode != config.ModePassThrough && !p.fnOnlyDataVisit.isThisNested {
		js_parser.go#L11190: 		if len(e.Args) == 1 && p.options.mode != config.ModePassThrough {
		js_parser.go#L11331: 		if p.options.mode != config.ModePassThrough && e.OptionalChain == js_ast.OptionalChainNone {
		js_parser.go#L11863: 			if p.options.mode != config.ModePassThrough {
		js_parser.go#L12882: 	if p.options.mode != config.ModePassThrough {
		js_parser.go#L12894: 		(p.options.mode != config.ModePassThrough && !p.options.outputFormat.KeepES6ImportExportSyntax())) {