33 lines
582 B
JavaScript
33 lines
582 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: 'taro-hooks',
|
|
camel2DashComponentName: false
|
|
},
|
|
'taro-hooks',
|
|
],
|
|
[
|
|
"import",
|
|
{
|
|
"libraryName": "@antmjs/vantui",
|
|
"libraryDirectory": "es",
|
|
"style": true
|
|
},
|
|
"@antmjs/vantui"
|
|
]
|
|
],
|
|
};
|