Skip to content

Commit

Permalink
Merge pull request #27 from neilenns/neilenns/issue26
Browse files Browse the repository at this point in the history
  • Loading branch information
pierr3 authored Apr 30, 2024
2 parents 4a9f328 + da25eae commit c312c0a
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Electron: Main",
"runtimeExecutable": "${workspaceFolder}/node_modules/@electron-forge/cli/script/vscode.sh",
"runtimeArgs": ["--remote-debugging-port=9223"],
"windows": {
"runtimeExecutable": "${workspaceFolder}/node_modules/@electron-forge/cli/script/vscode.cmd"
},
"cwd": "${workspaceFolder}",
"console": "integratedTerminal"
},
{
"name": "Electron: Renderer",
"type": "chrome",
"request": "attach",
"port": 9223,
"webRoot": "${workspaceFolder}",
"timeout": 30000,
}],
"compounds": [
{
"name": "Electron: All",
"configurations": [
"Electron: Main",
"Electron: Renderer"
]
}
]
}

0 comments on commit c312c0a

Please sign in to comment.