It's a common pattern to delegate class initialization to helper methods to reduce the size of the constructor. This makes it more maintainable. However, when using --strictNullChecks and --strictPropertyInitialization, TypeScript complains because it's unable to infer the initialization since it's in a helper function. The argument in https://github.com/microsoft/TypeScript/issues/21132 is that it's because of inheritance, but I think it should work if the helper method is marked a private (or private class field #), since a subclass would not be able to access it.
Not only is it annoying to have to do private foo!: string;, but it's also hard to know to do that, so most just end up either removing the helper methods or using // @ts-ignore. It's also TS's goal to support common JS pattern as best as possible.
Explained above.
class A {
private foo: string; // <== TypeScript complains
constructor() {
this.initStuff();
}
private initStuff() {
this.foo = 'foo';
}
}
My suggestion meets these guidelines:
Duplicate of #24446 and #21132.
Search terms used: strictPropertyInitialization (same as you)
@MartinJohns I'm already linking to #21132. This is a new issue as that one was closed and locked without an answer to the follow-up reply.
Most helpful comment
@MartinJohns I'm already linking to #21132. This is a new issue as that one was closed and locked without an answer to the follow-up reply.