In angular, is it possible to hook to ngOnInit event for each component?
for example I want to execute console.log('im on ngOnInit');, in every component in my application, and I do not want to open each component and write this in the code.
Something like this or similar way is possible to do?
main.ts
 import { component } from '@angular...';
 
 component.hook('ngOnInit', (cmp) => { console.log('im on ngOnInit'); });
