I have a component generated by angular-cli and the resulting code for the .ts file has:
ngOnInit() {
}
instead of
ngOnInit(): void {
}
My tslint is configured to always want typedefs present, but the cli generates code without typedefs - that is my issue.
Is there a way to configure the cli to always set the required typedefs or are my only options are to disable this tslint check or fix it manually?