Exciting news! Typescript v1.3 has been officially announced today. To fully utilize this update, I quickly installed the power tools update for VS2013.
Upon completion of the installation, my Visual Studio environment now recognizes the "protected" keyword and tuple types. This new feature is definitely a welcomed addition!
However, when I decided to upgrade the TypeScriptToolsVersion attribute in my *.csproj file from 1.1 to 1.3:
<TypeScriptToolsVersion>1.3</TypeScriptToolsVersion>
An error occurred during the build process:
The specified task executable location "C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.3\tsc.exe" is invalid.
It appears that the "1.3" folder was not automatically generated by the installer.
To resolve this issue, I resorted to simply duplicating the existing 1.1 compiler.
Does anyone have insights into why the 1.3 folder was omitted from this release?
Note: Utilizing VS Professional 2013 (12.0.30723.00 Update 3)