From b34a713c2f48d459e3a4c7b915b56d3e7e175f29 Mon Sep 17 00:00:00 2001 From: Cyrille Tuzi Date: Thu, 18 Jan 2018 10:02:07 +0100 Subject: [PATCH] feat(@schematics/angular): strict TypeScript Enable currently TS strict features supported by Angular. --- packages/schematics/angular/application/files/tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/schematics/angular/application/files/tsconfig.json b/packages/schematics/angular/application/files/tsconfig.json index a6c016bf38..24020fd236 100644 --- a/packages/schematics/angular/application/files/tsconfig.json +++ b/packages/schematics/angular/application/files/tsconfig.json @@ -14,6 +14,10 @@ "lib": [ "es2017", "dom" - ] + ], + "noImplicitAny": true, + "strictNullChecks": true, + "noImplicitThis": true, + "alwaysStrict": true } }