File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed
packages/ngtools/webpack/src Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -45,14 +45,22 @@ export interface AngularCompilerPluginOptions {
4545 logger ?: logging . Logger ;
4646 directTemplateLoading ?: boolean ;
4747
48- // When using the loadChildren string syntax, @ngtools/webpack must query @angular/compiler-cli
49- // via a private API to know which lazy routes exist. This increases build and rebuild time.
50- // When using Ivy, the string syntax is not supported at all. Thus we shouldn't attempt that.
51- // This option is also used for when the compilation doesn't need this sort of processing at all.
48+ /**
49+ * When using the loadChildren string syntax, @ngtools/webpack must query @angular/compiler-cli
50+ * via a private API to know which lazy routes exist. This increases build and rebuild time.
51+ * When using Ivy, the string syntax is not supported at all. Thus we shouldn't attempt that
52+ * This option is also used for when the compilation doesn't need this sort of processing at all.
53+ * @deprecated SystemJsNgModuleLoader is deprecated, and this is part of its usage.
54+ */
5255 discoverLazyRoutes ?: boolean ;
5356
54- // added to the list of lazy routes
57+ /** added to the list of lazy routes
58+ * @deprecated SystemJsNgModuleLoader is deprecated, and this is part of its usage.
59+ */
5560 additionalLazyModules ?: { [ module : string ] : string } ;
61+ /**
62+ * @deprecated SystemJsNgModuleLoader is deprecated, and this is part of its usage.
63+ */
5664 additionalLazyModuleResources ?: string [ ] ;
5765
5866 // The ContextElementDependency of correct Webpack compilation.
You can’t perform that action at this time.
0 commit comments