react-toolbox/.babelrc

20 lines
435 B
Plaintext
Raw Permalink Normal View History

{
"presets": ["es2015", "stage-0", "react"],
2015-10-29 08:33:21 +03:00
"env": {
"development": {
"plugins": [
["react-transform", {
2015-10-29 08:33:21 +03:00
"transforms": [{
"transform": "react-transform-hmr",
"imports": ["react"],
"locals": ["module"]
}, {
"transform": "react-transform-catch-errors",
"imports": ["react", "redbox-react"]
}]
}]
]
2015-10-29 08:33:21 +03:00
}
}
2016-05-15 14:23:55 +03:00
}