@angular/material/index.d.ts' is not a module

后端 未结 13 1555
梦如初夏
梦如初夏 2020-12-02 10:44

With Angular 8, While building the app, we encounter the following error:

app/modules/admin-module/pages/editor/editor.component.ts:6:27 - error TS2306: 
Fil         


        
13条回答
  •  暖寄归人
    2020-12-02 11:36

    update: please check the answer of Jeff Gilliland below for updated solution

    Seems like as this thread says a breaking change was issued:

    Components can no longer be imported through "@angular/material". Use the individual secondary entry-points, such as @angular/material/button.

    Update: can confirm, this was the issue. After downgrading @angular/material@9.0... to @angular/material@7.3.2 we could solve this temporarily. Guess we need to update the project for a long term solution.

提交回复
热议问题