omi/.babelrc

24 lines
387 B
Plaintext
Raw Normal View History

2018-05-03 10:46:34 +08:00
{
"presets": [
[
"env",
{
"loose": true,
"exclude": [
"transform-es2015-typeof-symbol"
],
"targets": {
"browsers": [
"last 2 versions",
"IE >= 9"
]
}
}
]
],
"plugins": [
"transform-object-rest-spread",
"transform-react-jsx"
]
}