DenReg/.vscode/launch.json
Fabian Stamm 0d55b09677
All checks were successful
continuous-integration/drone/push Build is passing
Add vscode debug configuration
2020-08-02 23:41:05 +02:00

22 lines
455 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Registry",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}/registry",
"runtimeExecutable": "deno",
"runtimeArgs": [
"run",
"--inspect-brk",
"-A",
"--unstable",
"src/registry.ts"
],
"port": 9229,
"outputCapture": "std"
}
]
}