Files
edgetunnel/.vscode/launch.json
zizifn c2d655774f add Ws 0rtt into node and deno (#103)
add ws 0rtt to deno and nodejs
2023-03-05 16:20:04 +08:00

29 lines
895 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Attach by Process ID",
"processId": "${command:PickProcess}",
"request": "attach",
"skipFiles": ["<node_internals>/**"],
"type": "node"
},
{
"request": "launch",
"name": "Launch Program",
"type": "pwa-node",
"program": "C:\\github\\test-deno\\apps\\deno-vless\\src\\main.ts",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "C:\\Users\\zizifn\\scoop\\shims\\deno.EXE",
"runtimeArgs": ["run", "--inspect", "--allow-all", "--unstable"],
"attachSimplePort": 9229,
"env": {
"UUID": "e0a102c8-51c8-436c-860b-ef279d8a6ada"
}
}
]
}