I\'m trying to debug Jest unit tests using VS Code. I have the following config file settings
\"configurations\": [
{
\"name\": \"Debug Jest Te
I can't answer the precise question, however this basic launch config for debugging Jest works for me, it's also simple to include Jest skip files
{ "type": "node", "request": "launch", "name": "Jest", "program": "${workspaceRoot}/node_modules/jest/bin/jest.js", "args": [ "-i" ], "skipFiles": [ "
/**/*.js", "node_modules", ] },