12345678910111213141516171819202122232425262728293031 |
- // babel-preset-taro 更多选项和默认值:
- // https://github.com/NervJS/taro/blob/next/packages/babel-preset-taro/README.md
- module.exports = {
- presets: [
- ['taro', {
- framework: 'react',
- ts: true
- }]
- ],
- plugins: [
- [
- "import",
- {
- libraryName: "@taroify/core",
- libraryDirectory: "",
- style: true,
- },
- "@taroify/core",
- ],
- [
- "import",
- {
- libraryName: "@taroify/icons",
- libraryDirectory: "",
- camel2DashComponentName: false,
- style: () => "@taroify/icons/style",
- },
- "@taroify/icons",
- ],
- ]
- }
|