From 609e6dc50794803755d4f9749cb6f3e7b623d115 Mon Sep 17 00:00:00 2001 From: Alix von Schirp Date: Thu, 17 Apr 2025 04:57:54 +0200 Subject: [PATCH] build(tsconfig.json): sets strictNullChecks to true This is needed by TypeDoc Signed-off-by: Alix von Schirp --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 6c4a667..12e6dfc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,6 +12,7 @@ /* Strictness */ "strict": true, + "strictNullChecks": true, "noUncheckedIndexedAccess": true, "checkJs": true,