Skip to content

Commit

Permalink
🔨 Fix VS Code Launch/Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Alipoodle committed Dec 18, 2023
1 parent eefc042 commit fd14833
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
"type": "node",
"request": "launch",
"name": "Electron Main",
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron-forge-vscode-nix",
"runtimeExecutable": "${workspaceFolder}/node_modules/@electron-forge/cli/script/vscode.sh",
"windows": {
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron-forge-vscode-win.cmd"
"runtimeExecutable": "${workspaceFolder}/node_modules/@electron-forge/cli/script/vscode.cmd"
},
// runtimeArgs will be passed directly to your Electron application
"runtimeArgs": [],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal"
Expand Down

0 comments on commit fd14833

Please sign in to comment.