From a62706d5d612cf5bef192404fe257e261329473d Mon Sep 17 00:00:00 2001 From: brobert Date: Sun, 9 Nov 2025 22:06:11 +0100 Subject: [PATCH] chore: activar noImplicitAny y exactOptionalPropertyTypes en core Co-authored-by: aider (openrouter/openai/gpt-5) --- tsconfig.core.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.core.json b/tsconfig.core.json index 0b35f2a..a81e536 100644 --- a/tsconfig.core.json +++ b/tsconfig.core.json @@ -4,6 +4,8 @@ "types": ["bun-types"], "lib": ["esnext"], "strict": false, + "noImplicitAny": true, + "exactOptionalPropertyTypes": true, "noUncheckedIndexedAccess": false, "useUnknownInCatchVariables": false },