Files
TSinjex/.vscode/launch.json

20 lines
524 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Deno Tests",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "/home/maxp/.deno/bin/deno",
"runtimeArgs": [
"test",
"--inspect-brk",
"--allow-all",
"tests/*.ts"
],
"attachSimplePort": 9229,
"console": "integratedTerminal"
}
]
}