From dbd8e49b64f475b4f100c028f76020ad8441e70a Mon Sep 17 00:00:00 2001 From: JohnDoe6345789 Date: Thu, 25 Dec 2025 19:25:46 +0000 Subject: [PATCH] Fix tsconfig strict null checks --- config/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/tsconfig.json b/config/tsconfig.json index 3c37720de..24e9cd00c 100644 --- a/config/tsconfig.json +++ b/config/tsconfig.json @@ -12,6 +12,7 @@ "skipLibCheck": true, /* Strict type checking */ "strict": true, + "strictNullChecks": true, "noUncheckedIndexedAccess": true, "exactOptionalPropertyTypes": true, "noImplicitOverride": true, @@ -34,7 +35,6 @@ ] }, "allowJs": true, - "strict": false, "incremental": true, "esModuleInterop": true, "resolveJsonModule": true,