Files
FileSharing/tsconfig.app.json
2026-05-09 18:09:57 +00:00

18 lines
475 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"types": ["vite/client"],
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"noUnusedLocals": false,
"noUnusedParameters": false,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"ignoreDeprecations": "6.0"
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
}