This repository has been archived on 2023-06-09. You can view files and clone it, but cannot push or open issues or pull requests.
deno-http/.vscode/launch.json
2023-05-11 14:27:22 +02:00

20 lines
460 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"request": "launch",
"name": "test deno-http",
"type": "node",
"program": "${workspaceFolder}/example/test.ts",
"cwd": "${workspaceFolder}/example/",
"runtimeExecutable": "C:\\Users\\Admin\\.deno\\bin\\deno.EXE",
"runtimeArgs": [
"run",
"--unstable",
"--inspect-wait",
"--allow-all"
],
"attachSimplePort": 9229
}
]
}