summaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r--.vscode/tasks.json21
1 files changed, 19 insertions, 2 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 006e878..a399f2d 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -5,7 +5,24 @@
"type": "gulp",
"task": "default",
"problemMatcher": [],
- "label": "gulp: default"
+ "label": "gulp: default",
+ "options": {
+ "env": {
+ "PATH": "${env:PATH}:/usr/lib/sdk/node16/bin/"
+ }
+ }
+ },
+ {
+ "type": "npm",
+ "script": "start",
+ "problemMatcher": [],
+ "label": "npm: start",
+ "detail": "electron",
+ "options": {
+ "env": {
+ "PATH": "${env:PATH}:/usr/lib/sdk/node16/bin/"
+ }
+ }
}
]
-} \ No newline at end of file
+}