I'm using the @Output decorator in an angular 9 project and the code this this:
@Output('myMethod') myMethod: EventEmitter<any> = new EventEmitter();
Typescript gives my an error and forces me to add this about the code in order to remove the error:
// tslint:disable-next-line:no-output-rename
How can I fix this without having to disable the rule?