mirror of
https://github.com/ialley-workshop-open/uni-halo.git
synced 2026-09-11 16:00:44 +08:00
067f3ed98a
1. 新增mp-html、qs等生产依赖,补全项目基础库 2. 新增平台判断、缓存、工具函数等通用工具集 3. 新增标签页、网站浏览页、关于页等业务页面 4. 新增分类卡片、通知弹窗等业务组件 5. 新增uts-progressNotification、liu-poster、uhalo-upgrade等uni模块 6. 补充audio/video组件样式补件,修复uni-components路径缺失问题 7. 新增环境变量Halo个人令牌配置项 8. 重构store导出结构,新增appConfig/halo/setting三个状态模块 9. 新增tsconfig编译目标配置,适配更高版本ES语法
60 lines
1.2 KiB
JSON
60 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"target": "esnext",
|
|
"lib": [
|
|
"esnext",
|
|
"dom"
|
|
],
|
|
"baseUrl": ".",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"@img/*": [
|
|
"./src/static/images/*"
|
|
]
|
|
},
|
|
"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": {
|
|
"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"
|
|
]
|
|
}
|