insomnia/.babelrc
2017-08-01 09:58:08 -07:00

24 lines
386 B
Plaintext

{
"presets": [
"react",
"flow"
],
"plugins": [
"transform-object-rest-spread",
"transform-decorators-legacy"
],
"env": {
"development": {
"plugins": [
"react-hot-loader/babel"
]
},
"test": {
"presets": [
"es2015",
"flow" // We need to add this again because it has to run before es2015
]
}
}
}