Skip to content

Commit

Permalink
chore: update Rollup output option
Browse files Browse the repository at this point in the history
  • Loading branch information
nozomuikuta committed May 2, 2024
1 parent 5146535 commit 062a0de
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/chibivite/rollup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@ const __dirname = fileURLToPath(new URL('.', import.meta.url))
export default defineConfig({
input: path.resolve(__dirname, 'src/index.ts'),
output: {
file: path.resolve(__dirname, 'dist/index.mjs'),
dir: './dist',
entryFileNames: `[name].js`,
exports: 'named',
format: 'esm',
externalLiveBindings: false,
freeze: false,
sourcemap: true,
},
plugins: [
Expand Down

0 comments on commit 062a0de

Please sign in to comment.