From 798d959bee51c7af8e4bce69cfd98b299d802684 Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Wed, 8 Apr 2020 13:36:07 +0200 Subject: [PATCH] build: remove `fullTemplateTypeCheck` from aio tsconfig (#36502) `fullTemplateTypeCheck` is no longer required since we now use `strictTemplates` which is a superset of the former option. Follow-up on: https://github.com/angular/angular/commit/04f61c0c3ee9b3616b1719b4ae9c3eb097698218#r38354112 PR Close #36502 --- aio/tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/aio/tsconfig.json b/aio/tsconfig.json index 2e5d77de7a..bcb138ef77 100644 --- a/aio/tsconfig.json +++ b/aio/tsconfig.json @@ -37,7 +37,6 @@ ], "angularCompilerOptions": { "disableTypeScriptVersionCheck": true, - "fullTemplateTypeCheck": true, "strictInjectionParameters": true, "strictTemplates": true }