You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(@schematics/angular): generate component templates with a .ng.html file extension
To align with the updated style guide, Angular v20 will generate
component templates with a `.ng.html` file extension instead of
the previous `.html` by default. Projects will automatically
use this new template extension. Projects can however opt-out of
component generation using `.ng.html` by setting the `ngHtml`
option to false for the component schematic. This can be done as
a default in the `angular.json` or directly on the commandline
via `--no-ng-html` when executing `ng generate`.
Copy file name to clipboardexpand all lines: packages/schematics/angular/component/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.ts.template
Copy file name to clipboardexpand all lines: packages/schematics/angular/component/schema.json
+5
Original file line number
Diff line number
Diff line change
@@ -135,6 +135,11 @@
135
135
"type": "boolean",
136
136
"default": false,
137
137
"description": "Use a default export for the component in its TypeScript file instead of a named export."
138
+
},
139
+
"ngHtml": {
140
+
"type": "boolean",
141
+
"default": true,
142
+
"description": "Generate component template files with an '.ng.html' file extension instead of '.html'. The '.ng.html' file extension is recommended by the Angular style guide."
0 commit comments