babel.config.js 494 B

1234567891011121314151617181920
  1. // babel-preset-taro 更多选项和默认值:
  2. // https://github.com/NervJS/taro/blob/next/packages/babel-preset-taro/README.md
  3. module.exports = {
  4. presets: [
  5. ['taro', {
  6. framework: 'vue3',
  7. ts: true,
  8. compiler: 'webpack5',
  9. }]
  10. ],
  11. plugins: [
  12. '@babel/plugin-proposal-class-properties',
  13. '@babel/plugin-proposal-object-rest-spread',
  14. ['@babel/plugin-transform-runtime', {
  15. 'corejs': false,
  16. 'helpers': true,
  17. 'regenerator': true
  18. }]
  19. ]
  20. }