From 9897eec6aa96c87b5bc2f29399e93d7896da0c3a Mon Sep 17 00:00:00 2001 From: Marc Rousavy Date: Sat, 20 Feb 2021 16:59:21 +0100 Subject: [PATCH] TS: enable noUncheckedIndexedAccess --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 06d85f2..16844d6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,6 +19,7 @@ "noStrictGenericChecks": false, "noUnusedLocals": true, "noUnusedParameters": true, + "noUncheckedIndexedAccess": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, @@ -28,7 +29,6 @@ "exclude": [ "node_modules", "babel.config.js", - "jest.config.js", - ".eslintrc.js" + "jest.config.js" ] }