-
Notifications
You must be signed in to change notification settings - Fork 138
/
.babelrc
40 lines (39 loc) · 845 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
{
"presets": [
"@babel/preset-react",
[
"@babel/preset-env",
{
"targets": {
"chrome": "56",
"firefox": "59"
},
"useBuiltIns": "entry",
"corejs": 3
}
]
],
"plugins": [
[
"@babel/plugin-transform-runtime",
{
"corejs": false,
"helpers": true,
"regenerator": true,
"useESModules": true
}
],
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
"@babel/plugin-proposal-class-properties"
],
"env": {
"test": {
"plugins": ["istanbul"]
}
}
}