From 94af8462d318845821db6b62fba3e63781b8f8d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20LUDWIG?= Date: Fri, 9 Aug 2024 22:52:02 +0100 Subject: [PATCH] chore: stricter tsconfig.json --- packages/config-typescript/tsconfig.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/config-typescript/tsconfig.json b/packages/config-typescript/tsconfig.json index 207f718..e3f8321 100644 --- a/packages/config-typescript/tsconfig.json +++ b/packages/config-typescript/tsconfig.json @@ -1,16 +1,21 @@ { "compilerOptions": { "strict": true, + "strictBindCallApply": true, + "strictFunctionTypes": true, "allowUnusedLabels": false, "allowUnreachableCode": false, "noFallthroughCasesInSwitch": true, "noImplicitOverride": true, "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, "noPropertyAccessFromIndexSignature": true, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, + "verbatimModuleSyntax": true, "isolatedModules": true, "esModuleInterop": true, "skipLibCheck": true,