I have defined the following Angular2 component:
import {Component} from \'angular2/core\'; @Component({ selector: \'my-app\', moduleId: module.id, te
It still did not work until i pasted this where i had module.id, on top of component. like this
declare var module: NodeModule; interface NodeModule { id: string; } @Component({module.id})
declare var module: NodeModule; interface NodeModule { id: string; }
@Component({module.id})