mirror of
https://github.com/ialley-workshop-open/uni-halo.git
synced 2026-07-27 04:20:43 +08:00
3945ee611d
- 删除大量废弃的旧代码、依赖和配置文件 - 新增基础项目配置、工具函数、页面模板和请求库 - 重构目录结构,统一项目规范 - 添加commitlint、husky等代码规范工具
60 lines
1.2 KiB
JSON
60 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"lib": [
|
|
"esnext",
|
|
"dom"
|
|
],
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"@img/*": [
|
|
"./src/static/*"
|
|
]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"@dcloudio/types",
|
|
"@uni-helper/uni-types",
|
|
"@uni-helper/vite-plugin-uni-pages",
|
|
"miniprogram-api-typings",
|
|
"z-paging/types",
|
|
"vitest/globals",
|
|
"./src/types/async-component.d.ts",
|
|
"./src/types/async-import.d.ts",
|
|
"./src/typings.d.ts",
|
|
"@wot-ui/ui/global"
|
|
],
|
|
"allowJs": true,
|
|
"noImplicitThis": true,
|
|
"outDir": "dist",
|
|
"sourceMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"vueCompilerOptions": {
|
|
"types": ["vite/client"],
|
|
"plugins": [
|
|
"@uni-helper/uni-types/volar-plugin"
|
|
]
|
|
},
|
|
"include": [
|
|
"package.json",
|
|
"src/**/*.ts",
|
|
"src/**/*.js",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.jsx",
|
|
"src/**/*.vue",
|
|
"src/**/*.json"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|