Skip to content

Commit f7775ca

Browse files
fix: rollup config
1 parent c90bf94 commit f7775ca

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

rollup.config.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@ export default {
77
output: [
88
{
99
format: 'cjs',
10-
file: pkg.main,
10+
file: pkg.main
1111
},
1212
{
1313
format: 'esm',
14-
file: pkg.module,
14+
file: pkg.module
1515
},
1616
],
1717
external: ['@stencil/core'],
18-
plugins: [typescript()],
18+
plugins: [typescript({
19+
outDir: 'dist'
20+
})],
1921
};

0 commit comments

Comments
 (0)