TypeScript
Property has no initializer and is not definitely assigned in the constructor
TypeScript found a class property that is declared as required but is not initialized at declaration time or guaranteed to be assigned in the constructor.
TypeScript
TypeScript found a class property that is declared as required but is not initialized at declaration time or guaranteed to be assigned in the constructor.
Observed message
Property '{0}' has no initializer and is not definitely assigned in the constructor.Why it happens
How to fix it
Official reference
TSConfig Reference: strictPropertyInitializationRelated errors
Explore more