openethereum/js/.babelrc
2017-08-04 16:23:54 +02:00

35 lines
686 B
Plaintext

{
"presets": [
"es2017",
"es2016",
["es2015", { "modules": false }],
"stage-0",
"react"
],
"plugins": [
"transform-decorators-legacy",
"transform-class-properties",
"transform-object-rest-spread",
"transform-es2015-modules-commonjs"
],
"retainLines": true,
"env": {
"production": {
"plugins": [
"transform-react-remove-prop-types"
]
},
"development": {
"plugins": [
["react-intl", { "messagesDir": "./.build/i18n/" }],
"react-hot-loader/babel"
]
},
"test": {
"plugins": [
["babel-plugin-webpack-alias", { "config": "webpack/test.js" }]
]
}
}
}