1
0
Fork 0

add sourcemap support to rollup template

This commit is contained in:
Travis Fischer 2018-07-06 15:49:56 -04:00 committed by Joost De Cock
parent 137ce27cd5
commit b981aa7e6b

View file

@ -12,11 +12,13 @@ export default {
output: [ output: [
{ {
file: pkg.main, file: pkg.main,
format: 'cjs' format: 'cjs',
sourcemap: true
}, },
{ {
file: pkg.module, file: pkg.module,
format: 'es' format: 'es',
sourcemap: true
} }
], ],
plugins: [ plugins: [