From f0f2683a9ba8883790f78581f6b1413f955a0502 Mon Sep 17 00:00:00 2001 From: Evan Hahn Date: Fri, 22 Mar 2024 07:06:10 -0600 Subject: [PATCH] chore: enable strictFunctionTypes TypeScript option (#491) --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 53063bfa2..c8cfc3d5b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,6 +6,7 @@ "noImplicitThis": true, "strictNullChecks": true, "strictBindCallApply": true, + "strictFunctionTypes": true, "strictPropertyInitialization": true, "useUnknownInCatchVariables": true, "allowSyntheticDefaultImports": true,