babel.config.js 650 B

12345678910111213141516171819
  1. module.exports = {
  2. presets: [["@vue/app", { useBuiltIns: "entry" }]],
  3. env: {
  4. development: {
  5. plugins: ['dynamic-import-node']
  6. }
  7. },
  8. // "plugins": [
  9. // [
  10. // "@babel/plugin-transform-runtime",
  11. // {
  12. // "helpers": true, // 提取`babel`编译产生的公共的模块
  13. // "corejs": 2, // 用来解决非实例化的方法API的转化,默认false
  14. // "regenerator": true, // 解决全局作用域被污染问题 // 默认true
  15. // "useESModules": false // 不使用`@babel/plugin-transform-modules-commonjs`对模块的引入方式进行转换,默认为fasle
  16. // }
  17. // ]
  18. // ]
  19. }