babel.config.js 436B

123456789101112131415161718192021
  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: false
  8. }]
  9. ],
  10. plugins: [
  11. [
  12. "import",
  13. {
  14. libraryName: "@antmjs/vantui",
  15. libraryDirectory: "es",
  16. style: (name) => `${name}/style/less`,
  17. },
  18. "@antmjs/vantui"
  19. ]
  20. ]
  21. }