type github.com/evanw/esbuild/internal/js_parser.Options

11 uses

	github.com/evanw/esbuild/internal/js_parser (current package)
		js_parser.go#L35: 	options                  Options
		js_parser.go#L265: type Options struct {
		js_parser.go#L299: func OptionsFromConfig(options *config.Options) Options {
		js_parser.go#L300: 	return Options{
		js_parser.go#L323: func (a *Options) Equal(b *Options) bool {
		js_parser.go#L12622: func newParser(log logger.Log, source logger.Source, lexer js_lexer.Lexer, options *Options) *parser {
		js_parser.go#L12676: func Parse(log logger.Log, source logger.Source, options Options) (result js_ast.AST, ok bool) {
		js_parser.go#L12826: func LazyExportAST(log logger.Log, source logger.Source, options Options, expr js_ast.Expr, apiCall string) js_ast.AST {

	github.com/evanw/esbuild/internal/cache
		cache_ast.go#L146: 	options js_parser.Options
		cache_ast.go#L152: func (c *JSCache) Parse(log logger.Log, source logger.Source, options js_parser.Options) (js_ast.AST, bool) {