babel.config.js 431 B

12345678910111213
  1. module.exports = {
  2. presets: ['@vue/cli-plugin-babel/preset'],
  3. env: {
  4. development: {
  5. // 解决 Vue 热加载编译速度慢问题
  6. plugins: ['dynamic-import-node'],
  7. },
  8. production: {
  9. // 发布库到其它项目时,避免保留 ?. / ?? 导致旧构建器解析失败
  10. plugins: ['@babel/plugin-transform-optional-chaining', '@babel/plugin-transform-nullish-coalescing-operator'],
  11. },
  12. },
  13. };