guigu-oa-admin/.babelrc

20 lines
385 B
Plaintext
Raw Normal View History

2017-06-26 13:38:24 +08:00
{
"presets": [
2017-12-14 16:07:10 +08:00
["env", {
"modules": false,
"targets": {
"browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
}
}],
2017-06-26 13:38:24 +08:00
"stage-2"
],
2017-12-20 10:28:41 +08:00
"env": {
"development":{
"plugins": ["transform-vue-jsx", "transform-runtime", "dynamic-import-node"]
},
"production": {
"plugins": ["transform-vue-jsx", "transform-runtime"]
}
}
2017-06-26 13:38:24 +08:00
}