mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-07 12:00:01 +03:00
Added a new VSC launch configuration to start the backend in the debugger Update the build instruction in README.md (Issue #728)
35 lines
1011 B
JSON
35 lines
1011 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": "Dev: Debug Backend",
|
|
"request": "launch",
|
|
"runtimeArgs": [
|
|
"run-script",
|
|
"debug"
|
|
],
|
|
"runtimeExecutable": "npm",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"type": "node",
|
|
"cwd": "${workspaceFolder}/backend"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "attach",
|
|
"name": "Attach",
|
|
"port": 9229
|
|
},
|
|
{
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"name": "Launch chrome against localhost",
|
|
"url": "http://localhost:4200",
|
|
"webRoot": "${workspaceFolder}"
|
|
}
|
|
]
|
|
} |