web-dev-qa-db-ja.com

Angular 9 mat-progress-buttons error:ERROR inコンパイルに失敗しましたエントリポイントのmat-progress-buttons(es2015をesm2015として)コンパイルエラーが原因で

Angular 8からAngular 9.に更新した後、以下に示すmat-progress-buttonでエラーが発生します。9Angular 8. MatProgressButtonはAngular 9と互換性がありませんか?

node_modules/mat-progress-buttons/esm2015/mat-progress-buttons.js:181:26 - error NG1010: Value at position 1 in the NgModule.imports of MatProgressButtonsModule is not a reference: [object Object]

インポートは次のようになります:import { MatProgressButtonsModule } from 'mat-progress-buttons';

私のpackage.jsonは次のようになります:

  "dependencies": {
    "@angular/animations": "^9.0.2",
    "@angular/cdk": "^9.1.0",
    "@angular/common": "~9.0.2",
    "@angular/compiler": "~9.0.2",
    "@angular/core": "~9.0.2",
    "@angular/forms": "~9.0.2",
    "@angular/material": "^9.1.0",
    ...
    "@angular/router": "~9.0.2",
    "core-js": "^2.5.4",
    "mat-file-upload": "^1.3.2",
    "mat-progress-buttons": "^8.0.7",
    "rxjs": "~6.5.4",
    "tslib": "^1.10.0",
    "zone.js": "~0.10.2"
  },
  "devDependencies": {
    "@angular-devkit/build-angular": "~0.900.3",
    "@angular/cli": "~9.0.3",
    "@angular/compiler-cli": "~9.0.2",
    "@angular/language-service": "~9.0.2",
   ...
    "TypeScript": "^3.7.5"
  }
}

4
Anik Sau

同じ問題がありました。インストールされているモジュールのバージョンになんらかのエラーがあったようです。 node_moduleフォルダを削除し、npm installで再起動することで解決しました

それが役に立てば幸い。

1
JB17