This commit is contained in:
gcch 2025-09-26 16:18:46 +02:00
commit dbb1f574d0
7 changed files with 99 additions and 23 deletions

View file

@ -9,6 +9,7 @@
"alwaysStrict": true,
"checkJs": true,
"downlevelIteration": false,
"erasableSyntaxOnly": true,
"esModuleInterop": true,
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true,
@ -33,6 +34,7 @@
"skipLibCheck": false,
"strict": true,
"strictBindCallApply": true,
"strictBuiltinIteratorReturn": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
@ -41,6 +43,9 @@
"target": "ESNext",
"types": ["node"],
"useDefineForClassFields": true,
"useUnknownInCatchVariables": true
}
"useUnknownInCatchVariables": true,
"verbatimModuleSyntax": true
},
"exclude": ["dist"],
"include": ["**/*.js", "**/*.ts"]
}