Typescript files not compiling on Angular 2 with Visual Studio 2015
I followed Zach's Answer and create new VS 2015 .NET 5 project and run Angular 2 with Typescript. It looks like its working. But there is a little problem: MyApp.ts : import { Component } from "angular2/core"; @Component({ selector: "my-app", template: ` <div>Hello from Angular 2</div> ` }) export class MyApp { public constructor() { } } When i change the template, type some different text, lets say <div>Some text here</div> , and then i recompile the project and run in browser to see the change - it still shows the older template text - Hello from Angular 2 . So i checked in the MyApp.js