Skip to content

Commit

Permalink
fix: allow cjs for ext in types
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Oct 22, 2021
1 parent 8971d62 commit e878d1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export interface BuildEntry {
defaults?: Record<string, any>
declaration?: boolean
outDir?: string
ext?: 'mjs' | 'js' | 'ts'
ext?: 'cjs' | 'mjs' | 'js' | 'ts'
}

export interface BuildOptions {
Expand Down

0 comments on commit e878d1d

Please sign in to comment.