You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
645 B
28 lines
645 B
9 years ago
|
{
|
||
|
"presets": ["react", "es2015"],
|
||
|
"env": {
|
||
|
"development": {
|
||
|
"plugins": [
|
||
|
["transform-object-rest-spread"],
|
||
|
["transform-react-display-name"],
|
||
|
["react-transform", {
|
||
|
"transforms": [{
|
||
|
"transform": "react-transform-hmr",
|
||
|
"imports": ["react"],
|
||
|
"locals": ["module"]
|
||
|
}, {
|
||
|
"transform": "react-transform-catch-errors",
|
||
|
"imports": ["react", "redbox-react"]
|
||
|
}]
|
||
|
}]
|
||
|
]
|
||
|
},
|
||
|
"production": {
|
||
|
"plugins": [
|
||
|
["transform-object-rest-spread"],
|
||
|
["transform-react-display-name"]
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|