2026-04-11 15:59:14 +08:00
|
|
|
{
|
|
|
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
|
|
|
"compilerOptions": {
|
2026-04-26 13:28:08 +08:00
|
|
|
"lib": ["ES2025", "DOM", "DOM.Iterable"],
|
2026-04-11 15:59:14 +08:00
|
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
2026-04-16 20:24:09 +08:00
|
|
|
"types": ["vite/client", "vitest/globals"],
|
2026-04-11 15:59:14 +08:00
|
|
|
"ignoreDeprecations": "6.0",
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
2026-04-16 08:38:18 +08:00
|
|
|
"@/*": ["packages/client/src/*"]
|
2026-04-11 15:59:14 +08:00
|
|
|
},
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"erasableSyntaxOnly": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true
|
|
|
|
|
},
|
2026-04-16 08:38:18 +08:00
|
|
|
"include": ["packages/client/src/**/*.ts", "packages/client/src/**/*.tsx", "packages/client/src/**/*.vue"]
|
2026-04-11 15:59:14 +08:00
|
|
|
}
|