One feature I appreciate about Visual Studio 2017 is its ability to debug directly in TypeScript, which is often very useful. However, there are instances when debugging the underlying JavaScript code becomes necessary. Is there a way to instruct Visual Studio to enable debugging in JavaScript?
Issues like "this" being "_this" and causing debugger errors, along with asynchronous functions resulting in varied underlying code, highlight the need for accessing the JavaScript code for debugging purposes.