Blame view
babel.config.js
606 Bytes
1172ebb79 auto commit the c... |
1 2 3 4 5 6 7 8 9 |
// module.exports = { // presets: [ // '@vue/app' // ] // } // "@babel/preset-env", // { // "modules": false // }, |
80a28914e init |
10 |
module.exports = { |
1172ebb79 auto commit the c... |
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
"presets": [ [ '@vue/app', // '@babel/preset-env', { // "modules": false, // "targets": { // 配置代码的运行环境 // "chrome": 64 // }, // "useBuiltIns": true // 开启对 babel-polyfill 的优化 } ] ], "plugins": [ [ "component", { "libraryName": "element-ui", "styleLibraryName": "theme-chalk" } ] |
80a28914e init |
32 33 |
] } |