import {Component, View as NgView, bootstrap} from 'angular2/angular2'; @Component({ selector: '[ion-app]' }) @NgView({ templateUrl: 'main.html' }) class IonicApp { constructor() { console.log('IonicApp Start') } } bootstrap(IonicApp)