From ef662d7b4ccb9af16b803bb41936e82f54ecd91a Mon Sep 17 00:00:00 2001 From: wYh Date: Tue, 7 Mar 2017 10:39:19 +0800 Subject: [PATCH] fix config --- rollup.config.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/rollup.config.js b/rollup.config.js index 2656574..ef0305c 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -6,7 +6,12 @@ export default { plugins: [ babel({ exclude: 'node_modules/**', - presets: ['es2015-rollup'] + presets: [ + [ "es2015", { "modules": false } ] + ], + plugins: [ + "external-helpers" + ] }) ], format: 'umd',