feat: scaffold Vue 3 + TypeScript frontend with lint and typecheck tooling

This commit is contained in:
Justin Visser 2026-08-09 20:59:12 +02:00
parent c6a737db96
commit b354b0be76
18 changed files with 3124 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"types": ["vite/client"],
"allowArbitraryExtensions": true,
/* Linting */
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
}