Files
burg-stett-king-arth-web/tsconfig.json
T
2026-06-27 14:35:03 +02:00

29 lines
649 B
JSON

{
"compilerOptions": {
"target": "es2023",
"module": "esnext",
"lib": ["ES2023", "DOM"],
"types": ["vite/client"],
"skipLibCheck": true,
"jsx": "preserve",
"jsxImportSource": "vue",
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"noUnusedLocals": false,
"noUnusedParameters": false,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"],
"vueCompilerOptions": {
"experimentalRuntimeMode": "runtime"
}
}