We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44f4205 commit f1b87daCopy full SHA for f1b87da
packages/schematics/angular/ng-new/index.ts
@@ -42,6 +42,7 @@ export default function (options: NgNewOptions): Rule {
42
version: options.version,
43
newProjectRoot: options.newProjectRoot || 'projects',
44
minimal: options.minimal,
45
+ strict: options.strict,
46
};
47
const applicationOptions: ApplicationOptions = {
48
projectRoot: '',
packages/schematics/angular/ng-new/schema.json
@@ -127,6 +127,11 @@
127
"type": "boolean",
128
"default": false,
129
"x-user-analytics": 14
130
+ },
131
+ "strict": {
132
+ "description": "Creates a workspace with stricter TypeScript compiler options.",
133
+ "type": "boolean",
134
+ "default": false
135
}
136
},
137
"required": ["name", "version"]
0 commit comments