babel.config.js 401 B

1234567891011121314151617
  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. targets: {
  10. ios: '8',
  11. android: '4.1'
  12. },
  13. forceAllTransforms: true,
  14. useBuiltIns: process.env.TARO_ENV === 'h5' ? 'usage' : false
  15. }]
  16. ]
  17. }