私はAngular 2プロジェクトにaotを実装し、すべてのエラーを解決し、最終的に私の
"node_modules/.bin/ngc" -p tsconfig-aot.json
正常に実行されますが、 aot フォルダーに node_modules フォルダーのみが表示され、 app フォルダーは表示されません。では、どこで AppModuleNgFactory を取得してブートストラップできますか?
これは私のtsconfig-aot.jsonファイルです
{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["es2015", "dom"],
"noImplicitAny": false,
"suppressImplicitAnyIndexErrors": true
},
"files": [
"app/app.module.ts",
"app/main.ts"
],
"exclude": [
"node_modules",
"content/scripts/angular",
"content/scripts/jqwidgets",
"typings/main",
"typings/main.d.ts",
"typings/AmCharts.d.ts"
],
"angularCompilerOptions": {
"genDir": "aot",
"skipMetadataEmit" : true
}
}