3

グローバルにインストールし@angular/compiler-cli、次のtsconfig-aot.jsonをクライアント ディレクトリに追加しました。

{
  "compilerOptions": {
    "target": "es5",
    "module": "es2015",
    "moduleResolution": "node",
    "sourceMap": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "removeComments": false,
    "noImplicitAny": true,
    "suppressImplicitAnyIndexErrors": true,
    "types": []
  },
    "exclude": [
        "../node_modules"
    ],

  "angularCompilerOptions": {
   "genDir": "aot",
   "skipMetadataEmit" : true
 }
}

angular docs で推奨されているとおり。次にngc -p tsconfig-aot.json、クライアント ディレクトリで実行しますが、次のエラーが発生します。

エラー: コンパイルに失敗しました。リソース ファイルが見つかりません: C:/Users/George/Source/Repos/docs/client/components/home/client/components/home/home.html

そのリソースがないため.. 私の home.html は にありC:/Users/George/Source/Repos/docs/client/components/home/home.htmlます。

4

1 に答える 1