Skip to content
This repository has been archived by the owner on Sep 14, 2023. It is now read-only.

Commit

Permalink
chore: add VSCode debugging configuration (#212)
Browse files Browse the repository at this point in the history
* chore: add VSCode debugging configuration

* chore: remove comments from VSCode launch.json
  • Loading branch information
kratico authored and harrysolovay committed Oct 19, 2022
1 parent 5664353 commit 4a1c2c4
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Attach debugger"
},
{
"type": "node",
"runtimeExecutable": "deno",
"request": "launch",
"name": "Debug current file",
"program": "${file}",
"cwd": "${workspaceFolder}"
},
{
"type": "node",
"request": "launch",
"runtimeExecutable": "deno",
"runtimeArgs": ["task", "test", "--inspect-brk"],
"name": "Debug current test file",
"program": "${file}",
"cwd": "${workspaceFolder}",
"attachSimplePort": 9229
}
]
}

0 comments on commit 4a1c2c4

Please sign in to comment.