馃殌 feature request
Relevant Package
This feature request is for @angular/core
Description
Comments are removed in the rendered angular view. We are using another framework alongside angular whose bindings are within the comments. Our whole code base is written using that framework and we cannot afford to stop development to completely migrate all our code to angular. Which is why we want to do it in small iteration.
Stackblitz sample: https://stackblitz.com/edit/angular-zhw3az?file=src%2Fapp%2Fapp.component.ts

Describe the solution you'd like
An option within the Component decorator to leave comments
@component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ],
HTMLComments: true
})
Describe alternatives you've considered
The alternative would be to completely rewrite all our views changing those bindings.
馃殌 feature request
Relevant Package
This feature request is for @angular/coreDescription
Comments are removed in the rendered angular view. We are using another framework alongside angular whose bindings are within the comments. Our whole code base is written using that framework and we cannot afford to stop development to completely migrate all our code to angular. Which is why we want to do it in small iteration.
Stackblitz sample: https://stackblitz.com/edit/angular-zhw3az?file=src%2Fapp%2Fapp.component.ts
Describe the solution you'd like
An option within the Component decorator to leave comments@component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ],
HTMLComments: true
})
Describe alternatives you've considered
The alternative would be to completely rewrite all our views changing those bindings.