Top "Vscode-debugger" questions

The Visual Studio Code debugger allows the developer to find errors in a program by pausing and inspecting the code.

How to debug a nodemon project in VSCode

I have a NodeJs project and I run it using nodemon, I wish to run it in debug mode for …

node.js debugging visual-studio-code nodemon vscode-debugger
How to disable "just my code" setting in VSCode debugger?

When starting my project in the debugger (C# .NET Core), it states it's debugging "just my code". I want to …

visual-studio-code vscode-debugger
Visual Studio Code debugger doesn't stop at breakpoints

https://github.com/discord-bot-tutorial/Community-Discord-BOT The c# debugger for vscode doesn't stop at breakpoints with this specific project. I have …

c# visual-studio-code vscode-debugger
Visual studio code debugger error : "Could not find the task 'gcc build active file'

Im trying to configure a C/C++ workspace in Visual Studio Code using Ubuntu Linux, and I don't know how …

linux visual-studio-code vscode-debugger
How do you debug Jest Tests?

I can't find any information on debugging my unit tests written with Jest. How do you debug Jest Tests ?

typescript unit-testing debugging jestjs vscode-debugger
How to make vscode not wait for finishing a preLaunchTask?

I have a debug setup in Visual Studio code where I run an external binary which can execute my JS …

visual-studio-code vscode-tasks vscode-debugger
How to use PYTHONPATH with VSCode Python Extension for Debugging?

I'm working on a project which is structured like Parent Directory ----+ MyPackage ----__init__.py ----file1.py ----+ Tests …

python visual-studio-code vscode-settings vscode-debugger vscode-python
"Cannot find debug adapter for type 'node'. "

I'm trying to debug node script in vs code. Below is my launch.json - { "version": "0.2.0", "configurations": [ { "type": "node", "request": "…

node.js visual-studio-code vscode-debugger
Debug ExpressJS server side code using Visual Studio Code

i have made a simple CRUD app using express: 4.13.4 gulp: 3.9.1 mongodb :v3.0.6 reactjs : 15.0.2. node : 4.0.0 For server side code i hear …

express debugging visual-studio-code gulp vscode-debugger