forked from verdaccio/verdaccio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.babelrc
50 lines (50 loc) · 1.01 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
49
50
{
"env": {
"ui": {
"presets": [
"react",
["env",{
"targets": {
"browsers": [
"last 5 versions",
"FireFox >= 44",
"Safari >= 7",
"Explorer 11",
"last 4 Edge versions"
],
"loose": true
}
}],
"stage-2",
"stage-3"
],
"plugins": [
"react-hot-loader/babel",
"transform-runtime",
"transform-object-rest-spread",
"transform-decorators-legacy"
]
},
"test": {
"presets": [ "es2015-node4", "stage-2", "stage-3", "flow", "react"],
"plugins": [
"transform-class-properties",
"transform-object-rest-spread"
]
},
"registry": {
"presets": [
"es2015-node4", "flow"
],
"plugins": [
"transform-object-rest-spread"
]
},
"development": {
"presets": ["flow"],
"plugins": [
"flow-runtime"
]
}
}
}