Files
dolt/js/.babelrc
T
Aaron Boodman db9bb15786 Remove es6 support from js sdk (#1668)
We're not using it, and it just makes compiles slower
2016-05-27 14:08:48 -07:00

38 lines
839 B
Plaintext

{
"env": {
"production": {
"presets": ["react", "es2015"],
"plugins": [
"syntax-async-functions",
"syntax-flow",
"transform-class-properties",
"transform-regenerator",
[
"transform-runtime", {
"polyfill": false,
"regenerator": true
}
]
]
},
"development": {
"presets": ["react"],
"plugins": [
"syntax-async-functions",
"syntax-flow",
"transform-async-to-generator",
"transform-class-properties",
"transform-es2015-destructuring",
"transform-es2015-modules-commonjs",
"transform-es2015-parameters",
[
"transform-runtime", {
"polyfill": false,
"regenerator": true
}
]
]
},
}
}