summaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
blob: a399f2ddecf88a668a4f7a6ea72aee8632ef7c48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
	"version": "2.0.0",
	"tasks": [
		{
			"type": "gulp",
			"task": "default",
			"problemMatcher": [],
			"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/"
				}
			}
		}
	]
}