From 4e0ab38986c5f928beeda9584ea57ea25dacc405 Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Thu, 2 Apr 2026 09:47:58 -0700 Subject: [PATCH] noImplicitThis: enabled implicit this checking --- server/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/server/tsconfig.json b/server/tsconfig.json index 235f8a129..5c0fa6b75 100644 --- a/server/tsconfig.json +++ b/server/tsconfig.json @@ -7,6 +7,7 @@ "alwaysStrict": true, "strictBindCallApply": true, "noFallthroughCasesInSwitch": true, + "noImplicitThis": true, "outDir": "./dist", "esModuleInterop": true, "moduleResolution": "NodeNext",