aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-11-08 09:56:59 +0100
committerLibravatar GitHub <noreply@github.com>2017-11-08 09:56:59 +0100
commit46d70c093c315386ea20b9c6e88af099508fb522 (patch)
tree9e1148d98476f864903900e819b509dfe12a7f14 /.vscode/launch.json
parentfix(App): Prevent app from redirecting when dropping link (diff)
parentfeature(Service): Add webview crash handler to display a user friendly message (diff)
downloadferdium-app-46d70c093c315386ea20b9c6e88af099508fb522.tar.gz
ferdium-app-46d70c093c315386ea20b9c6e88af099508fb522.tar.zst
ferdium-app-46d70c093c315386ea20b9c6e88af099508fb522.zip
feat(Service): Add crash handler to display a user friendly message
(@dannyqiu)
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json13
1 files changed, 13 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 000000000..7d14571f5
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,13 @@
1{
2 "version": "0.2.0",
3 "configurations": [
4 {
5 "type": "node",
6 "request": "launch",
7 "name": "Electron Main",
8 "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
9 "program": "${workspaceFolder}/build/index.js",
10 "protocol": "inspector"
11 }
12 ]
13} \ No newline at end of file