From 173d05da8f2d7ca357159d4c51e960fd3a374dfa Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Sat, 11 Jan 2025 16:28:29 -0500 Subject: [PATCH] Add noUncheckedIndexedAccess typescript option --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index d3541c6df1..d2385b1664 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,6 +7,7 @@ "skipLibCheck": true, "esModuleInterop": true, "noImplicitAny": true, + "noUncheckedIndexedAccess": true, "allowSyntheticDefaultImports": true, "strict": true, "module": "ESNext",