babel.config.js 207 B

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