Does Angular support dynamic imports?

Yes, Angular 8 supports dynamic imports in router configuration. i.e, the users can use the import statement for lazy loading the module using loadChildren method and it will be understood by the IDEs(VSCode and WebStorm), webpack, etc. Previously, we have been written as below to lazily load the feature module. By mistake, if we have typo in the module name it still accepts the string and throws an error during build time.