1
0
Files
spa-starter/tsconfig.app.json
2025-12-27 13:05:19 +07:00

28 lines
641 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"types": ["vite/client"],
"paths": {
"@/*": ["./src/*"]
},
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"verbatimModuleSyntax": true
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"],
"vueCompilerOptions": {
// Required, obviously.
"plugins": ["@vue/language-plugin-pug"]
}
}