Skip to content

Commit

Permalink
fix: output format
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewPattell committed Jul 28, 2023
1 parent b0f4020 commit 1f12488
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
input: ['src/mocharc.js'],
output: {
dir: 'lib',
format: 'esm',
format: 'es',
},
plugins: [
del({ targets: 'lib/*', runOnce: true }),
Expand Down
2 changes: 1 addition & 1 deletion src/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default {
input: ['src/**/*.ts', 'migrations/*.ts'],
output: {
dir: 'lib',
format: 'esm',
format: 'es',
preserveModules: true,
preserveModulesRoot: 'src',
exports: 'auto',
Expand Down

0 comments on commit 1f12488

Please sign in to comment.