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

后端 未结 13 1549
梦如初夏
梦如初夏 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条回答
  •  Happy的楠姐
    2020-12-02 11:38

    Just update @angular/material from 7 to 9,

    npm uninstall @angular/material --save

    npm install @angular/material@^7.1.0 --save

    ng update @angular/material

    Just wait and see Angular doing the Migration alone,

    Hope it helps someone :)

提交回复
热议问题