{ "version": "0.2.0", "configurations": [ { "name": "Electron: Main", "type": "node", "request": "launch", "sourceMaps": true, "args": ["${workspaceFolder}/dist/main/main.js"], "outFiles": ["${workspaceFolder}/dist/**/*.js"], "cwd": "${workspaceFolder}", "protocol": "inspector", "console": "integratedTerminal", "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 } ] }