├── .gitignore ├── README.md ├── angular.json ├── package.json ├── src ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.ts │ ├── app.module.ts │ ├── lazy │ │ ├── index.ts │ │ ├── lazy.component.ts │ │ ├── lazy.module.ts │ │ └── lazy.service.ts │ ├── module1 │ │ ├── m1.module.ts │ │ ├── m1comp1.component.ts │ │ └── m1comp2.component.ts │ └── module2 │ │ ├── m2.module.ts │ │ ├── m2comp1.component.ts │ │ ├── m2comp2.component.ts │ │ └── m2comp3.component.ts ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css └── tsconfig.app.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/angular.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/src/app/app.component.css -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/lazy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/src/app/lazy/index.ts -------------------------------------------------------------------------------- /src/app/lazy/lazy.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/src/app/lazy/lazy.component.ts -------------------------------------------------------------------------------- /src/app/lazy/lazy.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/src/app/lazy/lazy.module.ts -------------------------------------------------------------------------------- /src/app/lazy/lazy.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/src/app/lazy/lazy.service.ts -------------------------------------------------------------------------------- /src/app/module1/m1.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/src/app/module1/m1.module.ts -------------------------------------------------------------------------------- /src/app/module1/m1comp1.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/src/app/module1/m1comp1.component.ts -------------------------------------------------------------------------------- /src/app/module1/m1comp2.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/src/app/module1/m1comp2.component.ts -------------------------------------------------------------------------------- /src/app/module2/m2.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/src/app/module2/m2.module.ts -------------------------------------------------------------------------------- /src/app/module2/m2comp1.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/src/app/module2/m2comp1.component.ts -------------------------------------------------------------------------------- /src/app/module2/m2comp2.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/src/app/module2/m2comp2.component.ts -------------------------------------------------------------------------------- /src/app/module2/m2comp3.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/src/app/module2/m2comp3.component.ts -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false 3 | }; 4 | -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- 1 | /* Add application styles & imports to this file! */ -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiVajnaII/lazy-load-ng-modules/HEAD/tsconfig.json --------------------------------------------------------------------------------