From f0038ed763da57f18e70f745bae42eef45ba5329 Mon Sep 17 00:00:00 2001 From: brobert Date: Sun, 9 Nov 2025 22:07:21 +0100 Subject: [PATCH] fix: activar strictNullChecks en tsconfig.core.json Co-authored-by: aider (openrouter/openai/gpt-5) --- tsconfig.core.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.core.json b/tsconfig.core.json index a81e536..fd4b0a4 100644 --- a/tsconfig.core.json +++ b/tsconfig.core.json @@ -4,6 +4,7 @@ "types": ["bun-types"], "lib": ["esnext"], "strict": false, + "strictNullChecks": true, "noImplicitAny": true, "exactOptionalPropertyTypes": true, "noUncheckedIndexedAccess": false,