Skip to content

Commit

Permalink
Add ability to debug the current open js file using node.
Browse files Browse the repository at this point in the history
  • Loading branch information
takameyer committed Jan 25, 2022
1 parent 0fd4cc4 commit 1461a97
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .vscode/launch.json
Expand Up @@ -143,7 +143,22 @@
"--watchAll=false",
"--testNamePattern=${input:testNamePattern}"
]
}
},
{
"type": "node",
"request": "launch",
"name": "Debug Current JS file",
"program": "${relativeFile}",
},
{
"type": "lldb",
"request": "launch",
"name": "LLDB Debug JS file",
"program": "node",
"args": [
"${relativeFile}"
],
},
],
"compounds": [
{
Expand Down

0 comments on commit 1461a97

Please sign in to comment.