I have one sharedmodule which exports differnt modules, components and pipes to the rest of the modules in the application.
This works quite well, BUT(!!!) I have the problem I can't get my head around.
I have a module which uses a pipe which is declarated in the shared module. The module is imported in the sharedmodule.
sharedmodule:
imports: [
moduleOne
],
declarations:[
pipeShared
],
exports:[
moduleOne
pipeShared
]
Now I cant declare the Pipe in moduleOne, but also can't import sharedModule in moduleOne.