2023-12-21 15:26:15 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-12-23 12:58:14 +08:00
|
|
|
"composite": true,
|
|
|
|
"skipLibCheck": true,
|
2023-12-23 12:10:45 +08:00
|
|
|
"module": "ESNext",
|
2023-12-23 12:58:14 +08:00
|
|
|
"moduleResolution": "bundler",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2023-12-21 15:26:15 +08:00
|
|
|
"sourceMap": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["./src/*"]
|
|
|
|
},
|
2024-02-01 19:05:11 +08:00
|
|
|
"outDir": "dist",
|
2023-12-21 15:26:15 +08:00
|
|
|
"lib": ["esnext", "dom"],
|
2023-12-23 13:42:31 +08:00
|
|
|
"types": [
|
|
|
|
"@dcloudio/types",
|
|
|
|
"@types/wechat-miniprogram",
|
|
|
|
"@uni-helper/uni-app-types",
|
2024-02-26 11:30:29 +08:00
|
|
|
"@uni-helper/uni-cloud-types",
|
2024-03-25 21:01:26 +08:00
|
|
|
"wot-design-uni/global.d.ts"
|
2023-12-23 13:42:31 +08:00
|
|
|
]
|
2023-12-22 09:36:27 +08:00
|
|
|
},
|
|
|
|
"vueCompilerOptions": {
|
2024-02-26 11:30:29 +08:00
|
|
|
"target": 3,
|
2023-12-22 09:36:27 +08:00
|
|
|
"nativeTags": ["block", "template", "component", "slot"]
|
2023-12-21 15:26:15 +08:00
|
|
|
},
|
2024-02-26 11:30:29 +08:00
|
|
|
"exclude": ["node_modules"],
|
2024-02-02 17:22:04 +08:00
|
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "src/**/*.json"]
|
2023-12-21 15:26:15 +08:00
|
|
|
}
|