In Angular, is it possible to extend a component that exists inside of an external module and then use that new component as a part of the module without modifying the module itself?
I'm able to extend the component and add additional functionality to it, but i'm unsure of how to connect this new component to the module. I want to keep the module untouched so that it can be updated without having to worry about modifying the new files each time.