babel.config.js 225 B

12345678
  1. module.exports = {
  2. plugins: [
  3. `@babel/plugin-transform-modules-commonjs`,
  4. `@babel/plugin-proposal-class-properties`,
  5. 'babel-plugin-replace-ts-export-assignment',
  6. ],
  7. presets: [`@babel/preset-typescript`],
  8. };