summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-04-07 15:03:02 +0300
committerAndrew Dolgov <[email protected]>2021-04-07 15:03:02 +0300
commit0f6b39f793caac7df5a499995d07730b59298b4c (patch)
tree00aa188f51de842049b73cea6f971d4b005cd9d8
parentd30b6210204d2b8ddfde3b6fd69dbe8448af196b (diff)
add launch.json
-rw-r--r--.vscode/launch.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..80a93e0
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,17 @@
+{
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "Debug Main Process",
+ "type": "node",
+ "request": "launch",
+ "cwd": "${workspaceFolder}",
+ "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
+ "windows": {
+ "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
+ },
+ "args" : ["."],
+ "outputCapture": "std"
+ }
+ ]
+}