babel.config.js 254 B

12345678910111213
  1. // babel-preset-taro 更多选项和默认值:
  2. // https://github.com/NervJS/taro/blob/next/packages/babel-preset-taro/README.md
  3. module.exports = {
  4. presets: [
  5. [
  6. "taro",
  7. {
  8. framework: "vue",
  9. ts: true
  10. }
  11. ]
  12. ]
  13. };