babel.config.js 212 B

123456789101112
  1. module.exports = {
  2. presets: [
  3. ['@vue/app', {
  4. useBuiltIns: 'entry',
  5. corejs: 3
  6. }]
  7. ],
  8. plugins: [
  9. "@babel/plugin-transform-runtime",
  10. "@babel/plugin-proposal-optional-chaining",
  11. ]
  12. }