Skip to content

Commit

Permalink
Merge pull request #31 from olegshulyakov/feature/vs-code-tasks
Browse files Browse the repository at this point in the history
VSCode launch configuration
  • Loading branch information
olegshulyakov authored Jun 18, 2022
2 parents 11b658a + da2914d commit 3f0de75
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
"windows": {
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
},
"args": [".", "--dev"]
}
]
}

0 comments on commit 3f0de75

Please sign in to comment.