summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json8
1 files changed, 7 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 80a93e0..0edf4d8 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -7,11 +7,17 @@
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
+ "runtimeArgs": [
+ ".",
+ "--enable-logging"
+ ],
"windows": {
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
},
"args" : ["."],
- "outputCapture": "std"
+ "outputCapture": "std",
+ "sourceMaps": false,
+ "stopOnEntry": false,
}
]
}