-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.babelrc
43 lines (43 loc) · 837 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"presets": [
["@babel/preset-env", {
"targets": {
"node": "8.10.0"
},
"modules": false
}],
["@babel/preset-stage-0", { "decoratorsLegacy": true }],
"@babel/preset-react"
],
"plugins": [
"lodash",
[
"@babel/plugin-transform-runtime",
{
"helpers": false,
"polyfill": false,
"regenerator": true
}
]
],
"env": {
"production": {
"plugins": [
"babel-plugin-transform-react-constant-elements"
]
},
"test": {
"presets": [
["@babel/preset-env"],
["@babel/preset-stage-0", { "decoratorsLegacy": true }],
"@babel/preset-react"
],
"plugins": [
[
"istanbul",
{ "exclude": [ "src/**/*.test.js", "__tests__" ] }
]
]
}
}
}