podman-desktop/.vscode/launch.json
Luca Stocchi 9ba49c2a05
fix: launch.json references wrong script (#5006) (#5094)
Signed-off-by: lstocchi <lstocchi@redhat.com>
2023-12-01 15:17:52 +01:00

23 lines
570 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug Main Process",
"skipFiles": ["<node_internals>/**"],
"program": "${workspaceFolder}/scripts/watch.mjs",
"autoAttachChildProcesses": true
},
{
// Needs to start "Debug Main Process" first
"name": "Attach Debugger Renderer Process",
"request": "attach",
"type": "chrome",
"port": 9223,
"sourceMaps": true,
"webRoot": "${workspaceRoot}/packages/",
"timeout": 30000
}
]
}