在媒体上的文章之后,我正在尝试将仪表板的一部分作为模块加载。
第一步是在 angular.json 中的 "lazyModules" 下添加这个模块。
一旦我添加了这个,我就会收到这个错误 -
Module build failed (from ./node_modules/@ngtools/webpack/src/index.js)
Error:PATH_TO_MY_MODULE\lazy-module.ts is missing from Typescript compilation. Please make sure it is in your tsconfig via 'files' or 'include' property.
我已经尝试将其添加到 files/include 属性中。没有帮助。
角.json
"projects": {
"my-project": {
"architect": {
"build": {
"options": {
"lazyModules": { "src/app/lazy-module/lazy-module.module" }
"aot": true,
"assets": ...
...
}
}
}
}
}