Angularjs Typescript annotations to mimic Angular syntax.
npm install angularjs-annotations --save
yarn add angularjs-annotations
bower install angularjs-annotations --save
import { Component } from 'angularjs-annotations';
@Component({
controller: AppComponentController,
template: require('./app.component.html')
})
export class AppComponent implements ng.IComponentOptions {
}
npm run test