From 21b844c5c8ea62d03d753e8b6c59e3e4ee234e25 Mon Sep 17 00:00:00 2001 From: Oliver Joseph Ash Date: Thu, 11 Feb 2021 13:40:27 +0000 Subject: [PATCH] Allow `noUncheckedIndexedAccess` --- src/checks.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/checks.ts b/src/checks.ts index 1f390891..bf539618 100644 --- a/src/checks.ts +++ b/src/checks.ts @@ -85,6 +85,7 @@ export async function checkTsconfig(dirPath: string, dt: DefinitelyTypedInfo | u case "noImplicitThis": case "strict": case "strictNullChecks": + case "noUncheckedIndexedAccess": case "strictFunctionTypes": case "esModuleInterop": case "allowSyntheticDefaultImports":