-
Notifications
You must be signed in to change notification settings - Fork 38
/
.babelrc
45 lines (45 loc) · 1.11 KB
/
.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"env": {
"production": {
"presets": [
"react-optimize"
],
"sourceMaps": false
},
"test": {
"plugins": [
["istanbul", {
"exclude": [
"**/node_modules/**",
"**/test/**",
"**/Test*"
]
}],
"dynamic-import-node"
],
"sourceMaps": "inline"
}
},
"plugins": [
"transform-decorators-legacy",
"transform-inline-environment-variables",
"transform-export-extensions",
"transform-class-properties",
"transform-object-rest-spread",
"transform-remove-strict-mode",
"syntax-dynamic-import"
],
"presets": [
["env", {
"targets": {
"browsers": ["last 1 versions", "ie >= 11"]
},
"modules": "commonjs",
"loose": true,
"useBuiltIns": true
}],
"react",
"es2015"
],
"sourceMaps": "inline"
}