aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode
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
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')
-rw-r--r--.vscode/launch.json13
-rw-r--r--.vscode/tasks.json18
2 files changed, 31 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
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
new file mode 100644
index 000000000..a9fb57b06
--- /dev/null
+++ b/.vscode/tasks.json
@@ -0,0 +1,18 @@
1{
2 "version": "2.0.0",
3 "tasks": [
4 {
5 "type": "npm",
6 "script": "dev",
7 "group": {
8 "kind": "build",
9 "isDefault": true
10 }
11 },
12 {
13 "type": "npm",
14 "script": "lint",
15 "group": "test"
16 }
17 ]
18} \ No newline at end of file