aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode/tasks.json
blob: 4ce44cd60bcd0145129a820b45d1608b8f475e36 (plain) (blame)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
{
	"version": "2.0.0",
	"tasks": [
		{
			"type": "npm",
			"script": "build",
			"group": {
				"kind": "build",
				"isDefault": true
			},
			"label": "Build Development",
			"options": {
				"env": {
					"NODE_ENV": "development"
				}
			}
		},
		{
			"type": "npm",
			"script": "build",
			"group": "build",
			"label": "Build Production",
			"options": {
				"env": {
					"NODE_ENV": "production"
				}
			}
		},
		{
			"type": "npm",
			"script": "start",
			"label": "Serve",
			"options": {
				"env": {
					"NODE_ENV": "development"
				}
			},
			"problemMatcher": []
		}
	]
}