From 196ff8378cceb10944bf38dab984ca48cc24fab8 Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Thu, 2 Apr 2026 09:48:40 -0700 Subject: [PATCH] noUncheckedIndexedAccess: enabled unchecked indexed access checking --- server/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/server/tsconfig.json b/server/tsconfig.json index fa3264426..c8eed0ce5 100644 --- a/server/tsconfig.json +++ b/server/tsconfig.json @@ -9,6 +9,7 @@ "noFallthroughCasesInSwitch": true, "noImplicitThis": true, "strictFunctionTypes": true, + "noUncheckedIndexedAccess": true, "outDir": "./dist", "esModuleInterop": true, "moduleResolution": "NodeNext",