I am trying to import HttpClientModule using the following line in my app.module.ts:
import { HttpClientModule } from '@angular/common/http';
and
imports: [
...
HttpClientModule,
...
]
However I keep getting the same error:
src/app/app.module.ts(4,38): error TS2307: Cannot find module '@angular/common/http'.
Despite those exact lines being included in these tutorials:
How can I fix this and use HttpClient ?