From e37dfcc2735f4892ebc571971e867e197a12d464 Mon Sep 17 00:00:00 2001 From: sBouzols Date: Wed, 11 Feb 2026 17:49:53 +0100 Subject: [PATCH] chore(): update tsconfig to detect bad functional typing Signed-off-by: sBouzols --- tsconfig.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 8acf660004..48b8f6bed1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,6 +8,9 @@ "esModuleInterop": true, "allowSyntheticDefaultImports": true, "strict": true, + "strictFunctionTypes": true, + "noImplicitAny": true, + "noImplicitReturns": true, "forceConsistentCasingInFileNames": true, "noFallthroughCasesInSwitch": true, "module": "esnext",