- 
                Notifications
    You must be signed in to change notification settings 
- Fork 156
Description
Currently the library is published as a single entrypoint. Using the library with Angular produces a bundle with igniteui-angular in main.
It would be nice to be able to have multiple chunks for the lazy modules.
Any feeback if this is possible or desired?
https://angular.io/guide/angular-package-format#entrypoints-and-code-splitting
The general rule for APF packages is to use entrypoints for the smallest sets of logically connected code possible. 
For example, the Angular Material package publishes each logical component or set of components 
as a separate entrypoint - one for Button, one for Tabs, etc. This allows each Material component
 to be lazily loaded separately, if desired.
Copilot

