I was trying to find out what the current version of typescript is in my VS2015 U3 installation.
When executing tsc -v in my VS command prompt I get 2.0.6
When looking in C:\Program Files (x86)\Microsoft SDKs\TypeScript I see version 1.8
When I create a new project the csproj file contains
<TypeScriptToolsVersion>1.8</TypeScriptToolsVersion>
So what version is installed and how can I use the version 2.0.6 in Visual Studio?
I have a project form Github that contains
<TypeScriptToolsVersion>2.0</TypeScriptToolsVersion>
When I try to build I get the error "tsc.exe" exited with code 1. Does this relate to this?