feat: 初始化 Taro 3.8 图生图风格转换小程序项目
- 添加基础项目配置和依赖 - 配置多平台编译支持 (微信小程序、H5、APP) - 集成 TypeScript、ESLint、Stylelint 代码规范 - 配置 Husky 和 Commitlint 代码提交检查 - 设置开发、测试、生产环境配置
This commit is contained in:
12
babel.config.js
Normal file
12
babel.config.js
Normal file
@@ -0,0 +1,12 @@
|
||||
// babel-preset-taro 更多选项和默认值:
|
||||
// https://docs.taro.zone/docs/next/babel-config
|
||||
module.exports = {
|
||||
presets: [
|
||||
['taro', {
|
||||
framework: 'react',
|
||||
ts: true,
|
||||
compiler: 'vite',
|
||||
useBuiltIns: process.env.TARO_ENV === 'h5' ? 'usage' : false
|
||||
}]
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user