I\'m learning Angular Material and I\'m getting this error when importing { MatButtonModule } from \"@angular/material/button\".
From what I read in other answers, it lo
Adding skipLibCheck: true in compilerOptions inside tsconfig.json file fixed my issue.
skipLibCheck: true
compilerOptions
tsconfig.json
"compilerOptions": { "skipLibCheck": true, },