2016-09-15 21:53:29 +00:00
|
|
|
{
|
|
|
|
"plugins": [
|
|
|
|
"syntax-trailing-function-commas",
|
|
|
|
"transform-decorators-legacy",
|
2016-10-18 21:02:17 +00:00
|
|
|
"transform-object-rest-spread",
|
2018-06-29 23:08:14 +00:00
|
|
|
"transform-class-properties",
|
2016-09-15 21:53:29 +00:00
|
|
|
"transform-runtime",
|
2018-06-29 23:08:14 +00:00
|
|
|
"lodash",
|
|
|
|
["module-resolver", {
|
|
|
|
"root": ["./src"],
|
|
|
|
"alias": {
|
|
|
|
"src": "./src",
|
|
|
|
"shared": "./src/shared",
|
|
|
|
"style": "./src/style",
|
|
|
|
"utils": "./src/utils"
|
|
|
|
}
|
|
|
|
}]
|
2016-09-15 21:53:29 +00:00
|
|
|
],
|
2018-02-25 17:07:52 +00:00
|
|
|
"presets": ["env", "react", "stage-0"],
|
2016-09-15 21:53:29 +00:00
|
|
|
"env": {
|
2018-04-17 17:53:13 +00:00
|
|
|
"development": {
|
|
|
|
"plugins": ["transform-decorators-legacy"]
|
|
|
|
},
|
2016-09-15 21:53:29 +00:00
|
|
|
"production": {
|
|
|
|
"plugins": [
|
2018-04-17 17:53:13 +00:00
|
|
|
"transform-react-remove-prop-types",
|
|
|
|
"transform-decorators-legacy"
|
2016-09-15 21:53:29 +00:00
|
|
|
]
|
2018-04-17 17:53:13 +00:00
|
|
|
}
|
2016-09-15 21:53:29 +00:00
|
|
|
}
|
|
|
|
}
|