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 {
45
45
logger ?: logging . Logger ;
46
46
directTemplateLoading ?: boolean ;
47
47
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
+ */
52
55
discoverLazyRoutes ?: boolean ;
53
56
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
+ */
55
60
additionalLazyModules ?: { [ module : string ] : string } ;
61
+ /**
62
+ * @deprecated SystemJsNgModuleLoader is deprecated, and this is part of its usage.
63
+ */
56
64
additionalLazyModuleResources ?: string [ ] ;
57
65
58
66
// The ContextElementDependency of correct Webpack compilation.
You can’t perform that action at this time.
0 commit comments