Skip to content

Commit

Permalink
Add normal launch in vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
kaiserdj committed Jul 5, 2021
1 parent e38a3fd commit a040399
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,18 @@
"args" : [".", "--d"],
"outputCapture": "std"
},
{
"name": "Normal",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
"windows": {
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
},
"args" : ["."],
"outputCapture": "std"
},
{
"name": "Api",
"type": "node",
Expand Down

0 comments on commit a040399

Please sign in to comment.