Partha
Partha

Reputation: 43

How to run angular2 in visual studio 2012?

I need to work with angular2 in visual studio 2012. I tried with the following url, https://www.codeproject.com/Tips/1026938/AngularJS-Getting-Started-with-Visual-Studio But it doesnot work for me (step3)

'tsd' is not recogonized command and typescript build also not available. Can you please provide a solution.Thanks in advance!

Upvotes: 1

Views: 4152

Answers (1)

Michael Kang
Michael Kang

Reputation: 52837

Unfortunately, VS2012 is not compatible with the latest version of TypeScript.

The VS2012 TypeScript extension supports up to v1.0:

http://www.microsoft.com/en-ca/download/details.aspx?id=34790

If you plan to use TypeScript in your Angular2 application, you should consider updating to the Community VS edition:

https://www.visualstudio.com/vs/community/

and then install the VS2015 TypeScript extension (TypeScript v2.1.5)

https://www.microsoft.com/en-us/download/details.aspx?id=48593

Upvotes: 2

Related Questions