forked from paypal/paypal-checkout-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.babelrc
28 lines (28 loc) · 903 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
{
"presets": [
[
"env", {
"targets": {
"ie": 9,
"chrome": 27,
"firefox": 30,
"safari": 5,
"opera": 23
},
"modules": false,
"loose": true
}
],
"react"
],
"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-decorators-legacy", { "loose": true } ],
[ "transform-es2015-for-of", { "loose": true } ]
]
}