github.com/evanw/esbuild/internal/js_ast.AST.HasESMFeatures (method)

3 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L1729: func (ast *AST) HasESMFeatures() bool {

	github.com/evanw/esbuild/internal/bundler
		linker.go#L1162: 					if record.ContainsImportStar && !otherRepr.ast.HasESMFeatures() && !otherRepr.ast.HasLazyExport {
		linker.go#L2288: 	if namedImport.Alias != "*" && !otherRepr.ast.UsesCommonJSExports() && !otherRepr.ast.HasESMFeatures() && !otherRepr.ast.HasLazyExport {