From bf9bea977e07879b677d4671a79517f2e3b97848 Mon Sep 17 00:00:00 2001 From: Andreas Hallberg Date: Wed, 9 Jun 2021 12:43:01 +0200 Subject: [PATCH] ng12: Disable strict mode for new Angular projects --- cli/src/commands/new.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/commands/new.ts b/cli/src/commands/new.ts index 4f7b1859..f7f58447 100644 --- a/cli/src/commands/new.ts +++ b/cli/src/commands/new.ts @@ -133,7 +133,7 @@ const npmInstall = (projectDir: string) => { }; const newAngularProject = async (options: INewProjectOptions) => { - const ngOptions = ['--skip-install']; + const ngOptions = ['--skip-install', '--strict=false']; if (!options.git) { ngOptions.push('--skip-git'); }