From 09170cd6393063b3915209f38e518d6e1e032cc5 Mon Sep 17 00:00:00 2001 From: Maksim Sukharev Date: Fri, 5 Sep 2025 15:55:58 +0200 Subject: [PATCH] chore(ts): suppress 'noUncheckedIndexedAccess' - this makes any non-typed object (and array) fields be possibly undefined Signed-off-by: Maksim Sukharev --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index e739025fa6..e30426d459 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,6 +7,7 @@ "allowJs": true, "checkJs": false, "allowImportingTsExtensions": true, + "noUncheckedIndexedAccess": false, "strictNullChecks": true, "lib": ["ESNext", "DOM", "DOM.Iterable"], "types": [],