From 12288c808c0c11330156a83736076a9feca716b6 Mon Sep 17 00:00:00 2001 From: Alan Date: Mon, 17 Jun 2019 13:20:11 +0200 Subject: [PATCH] feat(@schematics/angular): add `fullTemplateTypeCheck` and `strictInjectionParameters` to workspace tsconfig.json Closes #14794 --- .../schematics/angular/workspace/files/tsconfig.json.template | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/schematics/angular/workspace/files/tsconfig.json.template b/packages/schematics/angular/workspace/files/tsconfig.json.template index a4df54fff629..30956ae7ea26 100644 --- a/packages/schematics/angular/workspace/files/tsconfig.json.template +++ b/packages/schematics/angular/workspace/files/tsconfig.json.template @@ -18,5 +18,9 @@ "es2018", "dom" ] + }, + "angularCompilerOptions": { + "fullTemplateTypeCheck": true, + "strictInjectionParameters": true } }