2023-12-21 15:26:15 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-12-23 12:10:45 +08:00
|
|
|
"module": "ESNext",
|
2023-12-21 15:26:15 +08:00
|
|
|
"sourceMap": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["./src/*"]
|
|
|
|
},
|
|
|
|
"lib": ["esnext", "dom"],
|
2023-12-22 09:36:27 +08:00
|
|
|
"types": ["@dcloudio/types", "@types/wechat-miniprogram", "@uni-helper/uni-app-types"]
|
|
|
|
},
|
|
|
|
"vueCompilerOptions": {
|
|
|
|
"nativeTags": ["block", "template", "component", "slot"]
|
2023-12-21 15:26:15 +08:00
|
|
|
},
|
2023-12-21 15:31:57 +08:00
|
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
|
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
2023-12-21 15:26:15 +08:00
|
|
|
}
|