22 lines
455 B
JSON
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"
|
||
|
}
|
||
|
]
|
||
|
}
|