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

20 lines
460 B
JSON
Raw Permalink Normal View History

2023-05-11 08:28:57 +00:00
{
"version": "0.2.0",
"configurations": [
{
"request": "launch",
"name": "test deno-http",
"type": "node",
"program": "${workspaceFolder}/example/test.ts",
2023-05-11 12:27:22 +00:00
"cwd": "${workspaceFolder}/example/",
2023-05-11 08:28:57 +00:00
"runtimeExecutable": "C:\\Users\\Admin\\.deno\\bin\\deno.EXE",
"runtimeArgs": [
"run",
"--unstable",
"--inspect-wait",
"--allow-all"
],
"attachSimplePort": 9229
}
]
}