From 7f55577864ae36a0de104ffcf1ed57a4ec91215f Mon Sep 17 00:00:00 2001 From: Edwin van den Houdt Date: Thu, 2 Jul 2026 08:50:22 +0200 Subject: [PATCH] chore(tsconfig): enable strict + strictTemplates Adds the `strict` umbrella flag (on top of the existing individual flags) and Angular's `strictTemplates`. Build and full test suite pass with no new errors. Co-Authored-By: Claude Opus 4.8 --- tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index bb68fbd..d6536f8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,7 @@ { "compileOnSave": false, "compilerOptions": { + "strict": true, "noImplicitOverride": true, "noPropertyAccessFromIndexSignature": true, "noImplicitReturns": true, @@ -26,7 +27,8 @@ "angularCompilerOptions": { "enableI18nLegacyMessageIdFormat": false, "strictInjectionParameters": true, - "strictInputAccessModifiers": true + "strictInputAccessModifiers": true, + "strictTemplates": true }, "files": [], "references": [