Skip to content Skip to sidebar Skip to footer

What Does Launch.json Have To Do With Debugging Javascript?

Trying to debug my javascript code in Visual Studio. Selected 'Start Debugging' and I get the following error message 'configuration 'Run Current File' is missing in launch.json' (

Solution 1:

launch.json is used for to launch an app for debugging. It has settings geared for things like mapping to your workspace source code or defining the Chrome port to use.

Check full details here

Post a Comment for "What Does Launch.json Have To Do With Debugging Javascript?"