From d94aec727d276ed1af82d57a6abf9a7a355de9e3 Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Wed, 10 Sep 2025 09:08:06 +0200 Subject: [PATCH] fix(@schematics/angular): remove explicit flag for host bindings As of https://github.com/angular/angular/pull/63654 type checking of host bindings is enabled by default so we don't need the explicit flag anymore. --- .../schematics/angular/workspace/files/tsconfig.json.template | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/schematics/angular/workspace/files/tsconfig.json.template b/packages/schematics/angular/workspace/files/tsconfig.json.template index 798ec8305a16..d51e03ac01fe 100644 --- a/packages/schematics/angular/workspace/files/tsconfig.json.template +++ b/packages/schematics/angular/workspace/files/tsconfig.json.template @@ -19,7 +19,6 @@ "enableI18nLegacyMessageIdFormat": false<% if (strict) { %>, "strictInjectionParameters": true, "strictInputAccessModifiers": true, - "typeCheckHostBindings": true, "strictTemplates": true<% } %> }, "files": []