babel.config.js 401 B

123456789101112131415
  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: 'react',
  7. ts: true
  8. }],
  9. // "module:metro-react-native-babel-preset"
  10. ],
  11. plugins: [
  12. // 'react-native-reanimated/plugin',
  13. ["@babel/plugin-proposal-decorators", { "legacy": true }]
  14. ]
  15. }