babel.config.js 255 B

1234567891011
  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: 'vite',
  9. }]
  10. ]
  11. }