I've been doing the Tour of Heroes tutorials again since I'm coming off of a 4 month hiatus from Angular. Everything was going fine until I hit the http section. Specifically the HttpClientInMemoryAPI section. From what I've found searching it sounds like its a compatibility issue. I found this article as well as this one and tried reverting to version 0.5.4. I also tried deleting the node_modules directory and doing a npm install (I did make sure the ver for the InMemAPI stayed at 0.5.4 before running install). Most of the other articles I found were geared towards Angular 2 so I didn't spend much time trying those. The error I'm currently getting is:
ERROR in node_modules/angular-in-memory-web-api/http-backend.service.d.ts(2,75): error TS2307: Cannot find module '@angular/http'. node_modules/angular-in-memory-web-api/http-backend.service.d.ts(3,10): error TS2305: Module '"C:/Development/Working/tour-of-heroes/node_modules/rxjs/Observable"' has no exported member 'Observable'. node_modules/angular-in-memory-web-api/http-client-backend.service.d.ts(2,10): error TS2305: Module '"C:/Development/Working/tour-of-heroes/node_modules/rxjs/Observable"' has no exported member 'Observable'. node_modules/angular-in-memory-web-api/http-in-memory-web-api.module.d.ts(2,28): error TS2307: Cannot find module '@angular/http'. node_modules/angular-in-memory-web-api/interfaces.d.ts(1,10): error TS2305: Module '"C:/Development/Working/tour-of-heroes/node_modules/rxjs/Observable"' has no exported member 'Observable'. node_modules/rxjs/Observable.d.ts(1,15): error TS2307: Cannot find module 'rxjs-compat/Observable'.
I hope I've done enough research not to get flamed for asking this, if not please at least point me to a good url as the 2 articles I posted above seem to be the most relevant and recent.
Thank you all, your help is greatly appreciated!