You are probably using the node native EventEmitter from node/index.d.ts i.e.
import { EventEmitter } from 'events';
Fix
Change the import to the one from angular:
import { EventEmitter } from '@angular/core';
You are probably using the node native EventEmitter from node/index.d.ts i.e.
import { EventEmitter } from 'events';
Change the import to the one from angular:
import { EventEmitter } from '@angular/core';