Files
gitlab-instance-0a899031_ad…/babel.config.js
2023-11-23 09:05:23 +08:00

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"
]
],
};