27 lines
622 B
Plaintext
27 lines
622 B
Plaintext
{
|
|
"presets": ["react", "es2015", "stage-0"],
|
|
"plugins": ["transform-decorators-legacy"],
|
|
"env": {
|
|
"development": {
|
|
"plugins": [
|
|
["react-transform", {
|
|
"transforms": [{
|
|
"transform": "react-transform-hmr",
|
|
"imports": ["react"],
|
|
"locals": ["module"]
|
|
}, {
|
|
"transform": "react-transform-catch-errors",
|
|
"imports": ["react", "redbox-react"]
|
|
}]
|
|
}]
|
|
]
|
|
},
|
|
"production": {
|
|
"plugins": [
|
|
"transform-react-inline-elements",
|
|
"transform-react-constant-elements"
|
|
]
|
|
}
|
|
}
|
|
}
|