35 lines
660 B
JavaScript
35 lines
660 B
JavaScript
// 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',
|
|
],
|
|
],
|
|
};
|