From 358c6d4a7c6ffbc59285aacbdb4e800d603948c6 Mon Sep 17 00:00:00 2001 From: Zak Henry Date: Tue, 25 Feb 2020 11:36:09 +0000 Subject: [PATCH] test: enable strict template checking in demo --- src/tsconfig.app.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/tsconfig.app.json b/src/tsconfig.app.json index d80f0526..50f4f89b 100644 --- a/src/tsconfig.app.json +++ b/src/tsconfig.app.json @@ -4,5 +4,10 @@ "outDir": "../out-tsc/app", "types": [] }, - "files": ["main.ts", "polyfills.ts"] + "files": ["main.ts", "polyfills.ts"], + "angularCompilerOptions": { + "fullTemplateTypeCheck": true, + "strictInjectionParameters": true, + "strictTemplates": true + } }