Visual Studio 2017 does a great job of letting me debug directly in TypeScript and a lot of the time this is extremely helpful. That said, there are times when I REALLY need to debug the underlying Javascript and I can't see how to do it. Is there a way to tell Visual Studio to let me debug in Javascript?
Between the problem with "this" really being "_this" and screwing up the debugger and async / away functions generating very different underlying code it becomes critical to be able to access the Javascript to debug.
there are times when I REALLY need to debug the underlying Javascript<= Like when? Also just use the browser's debugging tools if you want to do that.thiswhen they are transpiled to javascript. Again, you can use the browser's debugging tools which I find preferable over VS when it comes to debugging script.