From c15939c0b6df4c2639ff5ebe6b97f951fad10524 Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Mon, 30 Jun 2025 14:47:50 +0200 Subject: [PATCH] build: enable type checking of host bindings in docs The docs are on a separate tsconfig so they didn't have the config that enables type checking of their host bindings. --- docs/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/tsconfig.json b/docs/tsconfig.json index 0e7c0a779167..f999763b7602 100644 --- a/docs/tsconfig.json +++ b/docs/tsconfig.json @@ -31,6 +31,7 @@ "fullTemplateTypeCheck": true, "strictInjectionParameters": true, "strictInputAccessModifiers": true, - "strictTemplates": true + "strictTemplates": true, + "typeCheckHostBindings": true } }