static-cms/.babelrc

25 lines
392 B
Plaintext
Raw Normal View History

2016-02-25 00:45:56 -08:00
{
"presets": [
["env", {
"modules": false
}],
"stage-1",
"react"
],
2017-06-12 17:59:58 -07:00
"plugins": [
"lodash",
["babel-plugin-transform-builtin-extend", {
"globals": ["Error"]
}],
["transform-runtime", {
"useBuiltIns": true,
"useESModules": true
}]
2017-06-14 15:11:44 -07:00
],
"env": {
"test": {
"plugins": ["transform-es2015-modules-commonjs"]
}
}
2016-02-25 00:45:56 -08:00
}