2023-12-21 15:26:15 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-12-23 12:58:14 +08:00
|
|
|
"composite": true,
|
2025-06-21 16:56:24 +08:00
|
|
|
"lib": ["esnext", "dom"],
|
|
|
|
"baseUrl": ".",
|
2023-12-23 12:10:45 +08:00
|
|
|
"module": "ESNext",
|
2024-04-07 08:39:01 +08:00
|
|
|
"moduleResolution": "Node",
|
2023-12-21 15:26:15 +08:00
|
|
|
"paths": {
|
2025-05-23 10:56:00 +08:00
|
|
|
"@/*": ["./src/*"],
|
|
|
|
"@img/*": ["./src/static/*"]
|
2023-12-21 15:26:15 +08:00
|
|
|
},
|
2025-06-21 16:56:24 +08:00
|
|
|
"resolveJsonModule": true,
|
2024-09-09 14:34:02 +08:00
|
|
|
"types": [
|
|
|
|
"@dcloudio/types",
|
|
|
|
"@uni-helper/uni-types",
|
|
|
|
"@types/wechat-miniprogram",
|
2025-06-22 11:48:36 +08:00
|
|
|
"@ttou/uv-typings/shim",
|
|
|
|
"@ttou/uv-typings/v2",
|
2025-01-06 13:32:39 +08:00
|
|
|
"z-paging/types",
|
|
|
|
"./src/typings.d.ts"
|
2025-06-21 16:56:24 +08:00
|
|
|
],
|
|
|
|
"allowJs": true,
|
|
|
|
"noImplicitThis": true,
|
2025-06-21 17:03:45 +08:00
|
|
|
"outDir": "dist",
|
2025-06-21 16:56:24 +08:00
|
|
|
"sourceMap": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2025-06-21 17:03:45 +08:00
|
|
|
"skipLibCheck": true
|
2023-12-22 09:36:27 +08:00
|
|
|
},
|
|
|
|
"vueCompilerOptions": {
|
2024-09-09 14:34:02 +08:00
|
|
|
"plugins": ["@uni-helper/uni-types/volar-plugin"]
|
2023-12-21 15:26:15 +08:00
|
|
|
},
|
2024-04-21 15:34:13 +08:00
|
|
|
"include": [
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.js",
|
|
|
|
"src/**/*.d.ts",
|
|
|
|
"src/**/*.tsx",
|
|
|
|
"src/**/*.jsx",
|
|
|
|
"src/**/*.vue",
|
|
|
|
"src/**/*.json"
|
2025-06-21 16:56:24 +08:00
|
|
|
],
|
|
|
|
"exclude": ["node_modules"]
|
2023-12-21 15:26:15 +08:00
|
|
|
}
|