babel.config.js 232 B

1234567891011121314
  1. module.exports = {
  2. presets: [
  3. '@vue/app',
  4. [
  5. '@babel/preset-env',
  6. {
  7. 'useBuiltIns': 'entry'
  8. }
  9. ]
  10. ],
  11. plugins: [
  12. ["@babel/plugin-transform-modules-commonjs", { "strictMode": false }]
  13. ]
  14. }