Since one of the beta releases of version 5, Angular has a new compiler option, preserveWhitespaces
. The property is mentioned in CompilerOptions
type alias in the docs. The docs for the Component
decorator describe its usage, and mention that the default in version 5 is true
(no whitespace removal).
I've seen the PR, but from what I can tell from some tests is that the only way to use it is to supply preserveWhitespace
to every @Component
metadata. How can I set it to false
globally, for all components, and then set it to true
only for some components?