I started to program Angular 2 and I stuck with an error:
ts1206 decorators are not valid here
@Component({ // ts1206 de
The Decorators must come directly before an exported class for example:
@Component({ ... }) export class someComponent{}
this goes the same for @Pipe @Directive @Injectable and @NgModule
@Pipe
@Directive
@Injectable
@NgModule