1
0
Fork 0
muzika-gromche/Frontend/tsconfig.app.json

35 lines
704 B
JSON

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