Files
ClassContent/历届学生/front-end-team-11/项目开发/上课项目/vuecli2x/.babelrc
2024-09-27 02:06:13 +08:00

15 lines
339 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"presets": [
["env", {
"modules": false,
"targets": {
//翻译的最新的写法,还没有正式用的
"browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
}
}],
"stage-2"
],
//jsx的插件,有就转换,没有就空着
"plugins": ["transform-vue-jsx", "transform-runtime"]
}