P2B-WEB-2026_2025/block-01/week-01-the_web_under_the_hood/demo/tsconfig.json
2026-06-18 10:33:34 +02:00

28 lines
No EOL
557 B
JSON

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