From 5642b8c04756160bbd011d7a646aa821a3229ee9 Mon Sep 17 00:00:00 2001 From: Marc Durdin Date: Mon, 17 Aug 2026 11:25:04 +0200 Subject: [PATCH] chore(common): disable strictNullChecks for TypeScript for now As we have a lot of code that does not have comprehensive null checking, and TypeScript has moved to enable this by default in recent versions, for now, disable at top-level to avoid being spammed with unhelpful null errors in editors. Test-bot: skip Build-bot: skip --- tsconfig.base.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.base.json b/tsconfig.base.json index 4ee9ff4832..4b305b4d7b 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -11,6 +11,7 @@ "noImplicitAny": true, "strictBindCallApply": true, "strictFunctionTypes": true, + "strictNullChecks": false, "noUnusedLocals": true, "allowJs": true,