All Questions
Tagged with angular-builder angular-compiler
2 questions
0
votes
0
answers
199
views
Edit typescript before angular compiler
I want to strip a ts code before angular compiler.
Here is how it looks like before the compilation:
...
/* prod:start */
const title: string = "Production title!"
/* prod:end */
/* dev:...
0
votes
2
answers
219
views
Does seperating NgModules decrease the build time
Let's say we have a big NgModule the SharedModule, which exports a lot of components which are needed in multiple components. By importing the SharedModule into a feature module there is often an ...