mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
39 lines
903 B
JSON
Executable File
39 lines
903 B
JSON
Executable File
{
|
|
"configurations": [
|
|
{
|
|
"name": "Attach to Chrome",
|
|
"port": 9222,
|
|
"request": "attach",
|
|
"type": "pwa-chrome",
|
|
"webRoot": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"name": "Attach by Process ID",
|
|
"processId": "${command:PickProcess}",
|
|
"request": "attach",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"type": "pwa-node"
|
|
},
|
|
{
|
|
"name": "Electron Main",
|
|
"program": "${workspaceFolder}/main/index.js",
|
|
"request": "launch",
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"type": "pwa-node"
|
|
},
|
|
{
|
|
"name": "Launch via NPM",
|
|
"request": "launch",
|
|
"runtimeArgs": ["run-script", "debug"],
|
|
"runtimeExecutable": "npm",
|
|
"skipFiles": ["<node_internals>/**"],
|
|
"type": "pwa-node"
|
|
}
|
|
]
|
|
}
|