joyent-portal/frontend/.babelrc
Sérgio Ramos 6d5922e399 improve webpack config
- better stack traces
- disable hmr (for now)
- runtime eslint
- remove all async/await stuff (untill we actually need it)
- reaload when modules change
- show full path in compiled requires
- ignore node dependencies
- don't instantiate plugins unless required
2017-02-07 15:54:35 +00:00

52 lines
935 B
Plaintext

{
"sourceMaps": "both",
"presets": [
"react",
["env", {
"targets": {
"browsers": [
"last 2 versions"
]
}
}]
],
"plugins": [
"transform-class-properties",
["transform-object-rest-spread", {
"useBuiltIns": true
}],
["transform-react-jsx", {
"useBuiltIns": true
}],
"transform-es2015-modules-commonjs",
"transform-exponentiation-operator"
],
"env": {
"development": {
"plugins": [
"transform-react-jsx-source",
"transform-react-jsx-self"
]
},
"test": {
"presets": [
["env", {
"targets": {
"node": "current"
}
}]
],
"plugins": [
["babel-plugin-webpack-alias", {
"config": "${CONFIG}"
}]
]
},
"production": {
"plugins": [
"transform-react-constant-elements"
]
}
}
}