We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69cfaf7 commit 8206510Copy full SHA for 8206510
.babelrc
@@ -0,0 +1,13 @@
1
+{
2
+ "presets": [
3
+ [
4
+ "env",
5
+ {
6
+ "modules": false
7
+ }
8
+ ]
9
+ ],
10
+ "plugins": [
11
+ "external-helpers"
12
13
+}
rollup.config.js
@@ -1,6 +1,7 @@
// Import dependencies.
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
+import babel from 'rollup-plugin-babel';
import pkg from './package.json';
function banner() {
@@ -32,6 +33,7 @@ export default [
32
33
plugins: [
34
resolve(),
35
commonjs(),
36
+ babel({ exclude: 'node_modules/**' }),
37
banner()
38
]
39
},
@@ -56,6 +58,7 @@ export default [
56
58
57
59
60
61
62
63
64
}
0 commit comments