From 04f61c0c3ee9b3616b1719b4ae9c3eb097698218 Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Thu, 2 Apr 2020 13:51:31 +0200 Subject: [PATCH] build: enable `strictTemplates` in AIO (#36391) PR Close #36391 --- aio/src/app/custom-elements/api/api-list.component.html | 2 +- aio/tsconfig.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/aio/src/app/custom-elements/api/api-list.component.html b/aio/src/app/custom-elements/api/api-list.component.html index dc8461b204..e7f101b2ad 100644 --- a/aio/src/app/custom-elements/api/api-list.component.html +++ b/aio/src/app/custom-elements/api/api-list.component.html @@ -15,7 +15,7 @@ diff --git a/aio/tsconfig.json b/aio/tsconfig.json index aed6d03332..2e5d77de7a 100644 --- a/aio/tsconfig.json +++ b/aio/tsconfig.json @@ -38,6 +38,7 @@ "angularCompilerOptions": { "disableTypeScriptVersionCheck": true, "fullTemplateTypeCheck": true, - "strictInjectionParameters": true + "strictInjectionParameters": true, + "strictTemplates": true } }