What version am I using?
I am using Visual Studio 2013 and I have Update 3 installed.
There's a question here that speak of how-to chose TypeScript version, alas I haven't find this "TypeScriptToolsVersion"-entry they speak of anywhere in my files. I have googled for information about which version of TypeScript that Visual Studio use on both internet and the menus of my Visual Studio application but without any results. I must be missing something.
Reason I ask is because in this directory on my computer:
C:\Program Files (x86)\Microsoft SDKs\TypeScript
..I see TypeScript 0.9
and 1.0
installed. Given that TypeScript was at some point littered with bugs according to my own noble notes from an old TypeScript project, I would like to know which version I am using and if need be, upgrade to the latest.
Latest version
How do I find out what version of TypeScript is the latest? The TypeScript website store the specification file which is as of today versioned 1.0 (2014-10-11).
The website does not list TypeScript compilers that I can download or versions thereof. Instead, the site point me to Visual Studio updates. The "release notes" I could find from Visual Studio Update 3 speak not a word about TypeScript versions.
Going back to the TypeScript website, it has a link "the source" which goes to a TypeScript compiler stored on github. In one of the files, I can read that the version of the compiler is 1.3.0
(2014-10-11).
Given that this compiler is linked from the TypeScript website, I guess that it is some form of a "reference implementation" and I can bet my two balls that this is the one Visual Studio is using. Apparently though, the compiler's version 1.3.0
doesn't have anything to do with the version of the language TypeScript which I believe is "only" 1.0
.
I've been googling on how-to upgrade the TypeScript version of Visual Studio and that seem to be a smallish nightmare. But my primary goal is to just find out what version of TypeScript I am using. Secondary goal is to understand the versioning scheme a bit better, is the latest version of TypeScript 1.0 or 1.3? Last shall I begin the endeavour of actually upgrading Visual Studio if need be =)
Thank you!