babel.config.js 256 B

1234567891011121314
  1. module.exports = {
  2. presets: [
  3. '@vue/app'
  4. ],
  5. env: {
  6. development: {
  7. 'plugins': ['dynamic-import-node']
  8. }
  9. },
  10. plugins: [
  11. '@babel/plugin-proposal-optional-chaining',
  12. '@babel/plugin-proposal-nullish-coalescing-operator'
  13. ]
  14. }