I am following Angular js tutorial from https://angular.io/guide/quickstart
and I am trying to use this code:
import {bootstrap, Component} from 'angular2/angular2';
@Component({
selector: 'my-app',
template: '<h1>My First Angular 2 App</h1>'
})
class AppComponent { }
bootstrap(AppComponent);
but I get this error:
cannot find module "angular2/angular"
Here is my folder structure:

../typings/angular2/angular2