aboutsummaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
blob: df5f9842ea2ea24d3408b241e5cc65ec0677ef06 (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
{
	"version": "2.0.0",
	"tasks": [
		{
			"type": "shell",
			"group": {
				"kind": "build",
				"isDefault": true
			},
			"command": "./run_server.sh",
			"label": "./run_server.sh",
			"detail": "webpack --mode=production",
			"problemMatcher": []
		},
		{
			"type": "npm",
			"script": "build_release",
			"group": "build",
			"problemMatcher": [],
			"label": "npm: build_release",
			"detail": "webpack --mode=production"
		}
	]
}