-
Notifications
You must be signed in to change notification settings - Fork 22
/
.babelrc
31 lines (31 loc) · 945 Bytes
/
.babelrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"env": {
"development": {
"presets": [
["@babel/env", {
"targets": {
"browsers": [
">1%",
"not ie 11",
"not op_mini all"
]
},
"modules": false,
"useBuiltIns": "entry"
}],
"@babel/react"
],
"plugins": [
["@babel/plugin-proposal-unicode-property-regex", {
"useUnicodeFlag": false
}],
["@babel/plugin-transform-runtime", {
"polyfill": false,
"regenerator": true
}],
["@babel/plugin-proposal-class-properties"],
["@babel/plugin-syntax-dynamic-import"]
]
}
}
}