This repository has been archived on 2018-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
image-juicer/.babelrc

25 lines
466 B
Plaintext
Raw Permalink Normal View History

{
"presets": [
["env", {
"targets": { "node": 6 },
"useBuiltIns": true
}],
"stage-0",
"react"
],
2017-04-06 17:18:27 -04:00
"plugins": ["transform-export-extensions"],
"env": {
"production": {
"presets": ["react-optimize"],
"plugins": ["babel-plugin-dev-expression"]
},
"development": {
"plugins": [
"transform-class-properties",
"transform-es2015-classes",
2017-04-05 16:21:16 -04:00
"react-hot-loader/babel"
]
}
}
}