Skip to content

Commit

Permalink
ng12: Disable strict mode for new Angular projects
Browse files Browse the repository at this point in the history
  • Loading branch information
anhallbe committed Jun 9, 2021
1 parent 312c4a3 commit bf9bea9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/commands/new.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
Expand Down

0 comments on commit bf9bea9

Please sign in to comment.