forked from brainblocks/brainblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.babelrc
37 lines (35 loc) · 1.08 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
{
"presets": [
[
"env", {
"targets": {
"ie": 9,
"chrome": 27,
"firefox": 30,
"safari": 5,
"opera": 23
},
"modules": false,
"loose": true
}
]
],
"plugins": [
[ "transform-flow-strip-types", { "loose": true } ],
[ "transform-object-rest-spread", { "loose": true } ],
[ "syntax-object-rest-spread", { "loose": true } ],
[ "transform-class-properties", { "loose": true } ],
[ "transform-es3-property-literals", { "loose": true } ],
[ "transform-es3-member-expression-literals", { "loose": true } ],
[ "transform-es2015-for-of", { "loose": true } ],
[ "transform-decorators-legacy", { "loose": true } ],
[ "babel-plugin-transform-react-jsx", { "pragma": "jsxDom" } ]
],
"env": {
"test": {
"plugins": [
[ "istanbul", { "only": "./src" } ]
]
}
}
}