qa-education-exam-org-vue/.babelrc

20 lines
452 B
Plaintext
Raw Permalink Normal View History

{
"presets": [
["env", {
"modules": false,
"targets": {
"browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
}
}],
"stage-2"
],
"plugins": ["transform-runtime", "transform-vue-jsx", "transform-es2015-modules-commonjs", "syntax-jsx", "dynamic-import-node"],
"env": {
"development": {
"plugins": []
},
"test": {
"presets": [["env", { "modules": "commonjs" }], "stage-2"]
}
}
}