babel.config.js 228 B

1234567891011
  1. // babel-preset-taro 更多选项和默认值:
  2. // https://docs.taro.zone/docs/next/babel-config
  3. module.exports = {
  4. presets: [
  5. ['taro', {
  6. framework: 'react',
  7. ts: true,
  8. compiler: 'webpack5',
  9. }]
  10. ]
  11. }