Files
frontend/babel.config.js
2026-03-30 14:33:33 +08:00

22 lines
415 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,
compiler: 'vite',
}]
],
plugins: [
[
'import',
{
libraryName: 'taro-hooks',
camel2DashComponentName: false
},
'taro-hooks',
]
],
};