babel.config.js 631 B

12345678910111213141516171819202122232425262728293031
  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. ],
  10. plugins: [
  11. [
  12. "import",
  13. {
  14. libraryName: "@taroify/core",
  15. libraryDirectory: "",
  16. style: true,
  17. },
  18. "@taroify/core",
  19. ],
  20. [
  21. "import",
  22. {
  23. libraryName: "@taroify/icons",
  24. libraryDirectory: "",
  25. camel2DashComponentName: false,
  26. style: () => "@taroify/icons/style",
  27. },
  28. "@taroify/icons",
  29. ],
  30. ]
  31. }