I was formerly using Visual Studio 2013 for a web TypeScript project. Upgraded to Visual Studio 2015 Update 3, and when building the project, I get
\"tsc.exe\"
You can probably fix this issue by installing TypeScript 2.1.5 using the following link:
This will also point MSBuild to the proper TypeScript build, which fully supports the --listEmittedFiles
command switch (not supported in 1.x, hence the error).
See also this answer and/or this article that I wrote on the topic for further details and references about this issue.
I am using visual studio 2013. In my case in Web.csproj file, I replaced
by
I do not get this error now anymore.