chronograf/ui/.babelrc

32 lines
660 B
Plaintext
Raw Normal View History

{
"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",
"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"
}
}]
],
"presets": ["env", "react", "stage-0"],
"env": {
"development": {
"plugins": ["transform-decorators-legacy"]
},
"production": {
"plugins": [
"transform-react-remove-prop-types",
"transform-decorators-legacy"
]
}
}
}