I had previously installed TypeScript for VS 2013 from:
https://www.typescriptlang.org/#download-links
Now, this option is not available anymore. I uninstalled it, because I wanted to use NuGet Package Manager to install the TypeScript Compiler locally to my project, for portability. Moving to another PC should not require a separate TypeScript installation.
When I clicked Install, nothing happened. Maybe it was installed? There was no indication.
So, I also tried to install it from NuGet Package Manager Console, and it says it was installed successfully:
Question 1: How can I see where it was installed?
The packages.config has no reference to TypeScript.
The packages folder also doesn't contain any TypeScript packages.
When I try to build the project, I get an error:
Error 11 The specified task executable "tsc.exe" could not be run. Could not find a part of the path 'C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.8'. BGIS.Reports.Web
Question 2: What am I doing wrong? How can I fix the issue?


