mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 09:37:22 +00:00
23 lines
570 B
JSON
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
|
|
}
|
|
]
|
|
}
|