-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.babelrc
48 lines (46 loc) · 1.18 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
46
47
48
{
"presets": [
[
"env",
{
"modules": false,
"useBuiltIns": true,
"targets": {
"browsers": [
"last 2 Chrome versions",
"last 2 ChromeAndroid versions",
"last 2 Edge versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 iOS versions"
]
},
"exclude": [
"es6.typed.array-buffer",
"es6.typed.data-view",
"es6.typed.int8-array",
"es6.typed.uint8-array",
"es6.typed.uint8-clamped-array",
"es6.typed.int16-array",
"es6.typed.uint16-array",
"es6.typed.int32-array",
"es6.typed.uint32-array",
"es6.typed.float32-array",
"es6.typed.float64-array"
]
}
],
"react",
"stage-3"
],
"plugins": [
"react-hot-loader/babel",
"syntax-dynamic-import"
],
"env": {
"test": {
"presets": ["env", "react", "stage-3"],
"plugins": ["transform-es2015-modules-commonjs", "dynamic-import-node"]
}
}
}