tooling: lax typechecking in tests

This commit is contained in:
Carlos Valente
2025-12-11 17:52:54 +01:00
committed by Carlos Valente
parent 6beda1575a
commit 242cefd35c
10 changed files with 147 additions and 8 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"strict": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"allowUnreachableCode": false,
"noUncheckedIndexedAccess": false
}
}