I\'m trying to implement Lazy loading into my Angular 8 application but when I use the syntax provided in the official doc, my module gets loaded eagerly.
When I use
Issue for me was in the tsconfig.json. Once I updated the property "module" to "esnext", it worked fine.
tsconfig.json
"module"
"esnext"