我的错误如下:
[at-loader] assets\app\app.module.ngfactory.ts:28:27 中的错误找不到模块“./app.component.ngfactory”。
在我运行 npm run build 后,app.module.ngfactory.ts 按预期创建,但它创建了对我没有/找不到的模块的引用:
从'./app.component.ngfactory'导入*作为import21;
查看aot-compiler链接,我在编译应用程序部分看到以下内容:
好奇的人可以打开aot/app.component.ngfactory.ts以查看原始 Angular 模板语法的中间、编译到 TypeScript 的形式。
我认为我的问题可能来自于当我跑步时
“node_modules/.bin/ngc”-p tsconfig-aot.json
它希望为它正在创建的组件分配一个名称,我不确定该名称是否可以是任何名称,或者它是否需要特定的名称。我尝试了 NgFactory、app.component.ngfactory 和我的项目名称,但这些都没有做出任何我可以看到的更改。我也没有看到在我的 tsconfig-aot.json 文件中指定为 genDir 的文件夹,只有 outDir。
ngc 完成后,在 aot 文件夹(tsconfig-aot.json 中指定为 genDir 的文件夹)中查找 NgFactory 文件的集合。
以下是我的 tsconfig-aot.json 当前包含的内容:
{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false,
"outDir": "./public/js/app"
},
"exclude": [
"node_modules",
"dist",
"assets/app/polyfills.ts"
],
"angularCompilerOptions": {
"skipMetadataEmit" : true
}
}
如果您需要任何其他信息,请告诉我。我还没有找到任何关于这个的东西,我已经找了两天了。