From 7847733b01018a917f454babb469437dcfd3c6ae Mon Sep 17 00:00:00 2001 From: Yash Anand Date: Mon, 20 Sep 2021 20:36:23 +0530 Subject: [PATCH] fix(tsconfig): trailing comma --- generators/app/templates/_tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generators/app/templates/_tsconfig.json b/generators/app/templates/_tsconfig.json index caed6344..09dbeea1 100644 --- a/generators/app/templates/_tsconfig.json +++ b/generators/app/templates/_tsconfig.json @@ -43,10 +43,10 @@ "angularCompilerOptions": { "fullTemplateTypeCheck": true, "strictInjectionParameters": true, - "preserveWhitespaces": true, <% if (props.strict) { -%> "strictInputAccessModifiers": true, - "strictTemplates": true + "strictTemplates": true, <% } -%> + "preserveWhitespaces": true } }