I have an angular 2 project with 3 modules. AppModule, Shared module and a lazy loaded module. I want both the modules (lazy loaded and App) to import the shared module so they both can use the pipes etc.. provided by the shared module. Is this possible?
I have tried but I get errors telling me that the shared module has already been loaded. And to only load it in the AppModule only but then the lazy loaded module doesn't have access to provided elements.
Am I misunderstanding the angular modules?