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

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
}
]
}