This repository has been archived on 2022-06-19. You can view files and clone it, but cannot push or open issues or pull requests.
cytube-json-generator/.vscode/launch.json
Sam Therapy a63a3d990f
Prototype
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2022-05-13 13:21:48 +02:00

22 lines
420 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug (deno)",
"type": "pwa-node",
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "deno",
"runtimeArgs": [
"run",
"--inspect-brk",
"-A",
"${workspaceFolder}/generator.ts",
"./test.mp4",
"./sodd.srt"
],
"attachSimplePort": 9229
}
]
}