2
0

babel.config.js 197 B

123456789
  1. module.exports = {
  2. presets: [
  3. '@vue/cli-plugin-babel/preset'
  4. ],
  5. plugins: [
  6. '@babel/plugin-proposal-optional-chaining',
  7. '@babel/plugin-proposal-nullish-coalescing-operator'
  8. ]
  9. };