I am trying to build an application in Visual Studio that uses typescript. I followed the directions here and installed the typescript compiler for the version the project requires (2.2). I did it with NPM
npm install typescript
I verified my installation by
tsc --version
and it returned
Version 2.2.2
which is expected. However, when I go to build my solution I keep getting the following error:
Your project specifies TypeScriptToolsVersion 2.2, but a matching compiler was not found. The latest available TypeScript compiler will be used (2.3). To remove this warning, install the TypeScript 2.2 SDK or update the value of TypeScriptToolsVersion.
I have tried Google-ing and haven't had any luck. Can someone point me down the road to a solution?