I have followed the Tutorial. After changing app/maint.ts in the Http chapter I get the error when starting the app via command line:
ap
Try adding the typescript definitions:
sudo typings install --save file:./node_modules/angular2-in-memory-web-api/in-memory-backend.service.d.ts
... specifying the dependency name:
angular2-in-memory-web-api
Then add the entry point for "angular2-in-memory-web-api" in /systemjs.config.js
var packages = {
...
'angular2-in-memory-web-api': { main: 'core.js', defaultExtension: 'js' }
};