From 4c4c1cbb4a0999a63817589843b844f71c8e499c Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Thu, 14 Mar 2024 15:03:38 +1100 Subject: [PATCH] chore: enable `noUncheckedIndexedAccess` --- deno.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deno.json b/deno.json index 1b3a853c3714..3c320d1f749d 100644 --- a/deno.json +++ b/deno.json @@ -2,7 +2,8 @@ "compilerOptions": { "strict": true, "useUnknownInCatchVariables": true, - "noImplicitOverride": true + "noImplicitOverride": true, + "noUncheckedIndexedAccess": true }, "imports": { "https://deno.land/std@$STD_VERSION/": "./",