diff --git a/tsconfig.node.json b/tsconfig.node.json index 9d2aee90..6b122504 100644 --- a/tsconfig.node.json +++ b/tsconfig.node.json @@ -10,12 +10,20 @@ "moduleDetection": "force", "noEmit": false, "outDir": "./dist/backend", - "strict": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "erasableSyntaxOnly": true, - "noFallthroughCasesInSwitch": true, - "noUncheckedSideEffectImports": true + "strict": false, + "noUnusedLocals": false, + "noUnusedParameters": false, + "noImplicitReturns": false, + "noFallthroughCasesInSwitch": false, + "noUncheckedSideEffectImports": false, + "noImplicitAny": false, + "noImplicitThis": false, + "noImplicitReturns": false, + "noUncheckedIndexedAccess": false, + "exactOptionalPropertyTypes": false, + "noPropertyAccessFromIndexSignature": false, + "allowUnusedLabels": true, + "allowUnreachableCode": true }, "include": ["src/backend/**/*.ts"] } \ No newline at end of file