Skip to content

Commit

Permalink
the latest esbuild forces a __esModule: true in the output so we ne…
Browse files Browse the repository at this point in the history
…ed a `export default` in the index
Janther committed Feb 17, 2024

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
1 parent a1227fd commit 01ea267
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
export * from './parser'
import { ParserError, parse, tokenize, visit } from './parser'

export type { ParseOptions } from './types'

export default { ParserError, parse, tokenize, visit }

0 comments on commit 01ea267

Please sign in to comment.