2024-10-26 13:05:56 -03:00
|
|
|
{
|
|
|
|
|
"version": "0.2.0",
|
|
|
|
|
"configurations": [
|
|
|
|
|
{
|
|
|
|
|
"name": "Electron: Main",
|
|
|
|
|
"type": "node",
|
|
|
|
|
"request": "launch",
|
2024-10-26 16:26:11 -03:00
|
|
|
"sourceMaps": true,
|
2024-10-26 13:05:56 -03:00
|
|
|
"args": ["${workspaceFolder}/dist/main/main.js"],
|
|
|
|
|
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
|
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
|
"protocol": "inspector",
|
2024-10-26 16:26:11 -03:00
|
|
|
"console": "integratedTerminal",
|
2024-10-26 13:05:56 -03:00
|
|
|
"windows": {
|
|
|
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
|
|
|
|
|
},
|
|
|
|
|
"linux": {
|
|
|
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron"
|
|
|
|
|
},
|
|
|
|
|
"mac": {
|
|
|
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Electron: Renderer",
|
|
|
|
|
"type": "chrome",
|
|
|
|
|
"request": "launch",
|
|
|
|
|
"url": "http://localhost:3000",
|
|
|
|
|
"webRoot": "${workspaceFolder}/src",
|
|
|
|
|
"sourceMaps": true
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|