I am working in a big app and we want to have lazyload modules in order to improve the performance, but we want to use AOT (performance) and at the same time we want to keep separate pipelines in order to deploy only the module changed if there is no any dependency with other one. We are working in several team focused in different modules.
After investigating a lot, I don't find any way to do it. Have anyone had the same issue?
Everything works with JIT, having different javascript files in separate pipelines and we have tried to compile everything in only one build process in AOT and works, but we couldn't do AOT and different pipeline at the same time.