aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rollup.config.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/rollup.config.js b/rollup.config.js
index 5110e62..f73c62d 100644
--- a/rollup.config.js
+++ b/rollup.config.js
@@ -12,7 +12,7 @@ export default [ {
plugins: [
babel({
babelrc: false,
- comments: false,
+ comments: true,
presets: [ [ "es2015", { modules: false } ] ]
})
]
@@ -31,10 +31,10 @@ export default [ {
presets: [ [ "es2015", { modules: false } ] ]
}),
uglify({
- sourcemap: false,
- warnings: true,
+ ie8: true,
+ sourcemap: true,
toplevel: false,
- ie8: true
+ warnings: true
})
]
} ];