Skip to content

Commit 92d9b0a

Browse files
committed
feat(babel): babel-preset-env, polyfill entry import, fast-async → #7
CLOSES #7
1 parent 63ce1ee commit 92d9b0a

10 files changed

+9559
-1197
lines changed

.babelrc

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11
{
22
"presets": [
3+
"es2015",
34
["env", {
5+
"exclude": ["transform-regenerator"],
6+
"useBuiltIns": "usage",
7+
"debug": true,
48
"targets": {
5-
"browsers": ["last 4 versions"]
9+
"node": "current",
10+
"browsers": ["last 2 versions"]
611
},
712
}]
13+
],
14+
"plugins": [
15+
["fast-async", {
16+
"spec":true
17+
}]
818
]
919
}

0 commit comments

Comments
 (0)