19 lines
599 B
JSON
19 lines
599 B
JSON
|
|
{
|
||
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"lib": ["ES2025", "DOM", "DOM.Iterable"],
|
||
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
||
|
|
"types": ["vite/client", "vitest/globals"],
|
||
|
|
"ignoreDeprecations": "6.0",
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["packages/client/src/*"]
|
||
|
|
},
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"erasableSyntaxOnly": true,
|
||
|
|
"noFallthroughCasesInSwitch": true
|
||
|
|
},
|
||
|
|
"include": ["packages/client/src/**/*.ts", "packages/client/src/**/*.tsx", "packages/client/src/**/*.vue"]
|
||
|
|
}
|