make some adjustments to make linter and types happy
Some checks failed
CI / Test (pull_request) Failing after 19s

This commit is contained in:
2025-07-15 21:05:44 +02:00
parent 2d8dfe82d6
commit 40c8ed4643
3 changed files with 15 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
{
"compilerOptions": {
// Environment setup & latest features
"lib": ["ESNext"],
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "Preserve",
"moduleDetection": "force",
@@ -19,7 +19,7 @@
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noImplicitOverride": false,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,