babel.config.js 265 B

123456789101112131415
  1. module.exports = {
  2. plugins: [
  3. '@babel/plugin-syntax-dynamic-import',
  4. '@babel/plugin-proposal-optional-chaining',
  5. ['@babel/plugin-proposal-class-properties', { loose: true }],
  6. ],
  7. presets: [
  8. [
  9. '@babel/preset-env',
  10. {
  11. modules: false
  12. }
  13. ]
  14. ]
  15. };