-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathtasks.json
111 lines (111 loc) · 2.26 KB
/
tasks.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"version": "2.0.0",
"tasks": [
{
"label": "compile",
"type": "npm",
"script": "compile",
"group": "build",
"presentation": {
"panel": "shared",
"reveal": "always"
},
"problemMatcher": [
"$tsc"
]
},
{
"label": "compile - quick",
"detail": "Does not re-compile views",
"type": "shell",
"command": "npx",
"args": [
"tsc"
],
"group": "build",
"presentation": {
"panel": "shared",
"reveal": "always"
},
"problemMatcher": [
"$tsc"
]
},
{
"label": "watch",
"type": "npm",
"script": "watch",
"isBackground": true,
"group": "build",
"presentation": {
"panel": "dedicated",
"reveal": "never"
},
"problemMatcher": [
"$tsc-watch"
]
},
{
"type": "npm",
"script": "test-watch",
"path": "views/searchview/",
"problemMatcher": [
"$tsc-watch"
],
"group": "build",
"presentation": {
"panel": "dedicated",
"reveal": "never"
},
"label": "npm: test-watch - views/searchview",
"detail": "tsc -w",
"isBackground": true,
"runOptions": {
"runOn": "folderOpen"
}
},
{
"type": "npm",
"script": "compile",
"path": "views/searchview/",
"group": "build",
"problemMatcher": [],
"label": "npm: compile - views/searchview",
"detail": "npm run lint && browserify src/search.ts -p tsify > out/search.js"
},
{
"type": "npm",
"script": "watch",
"path": "views/searchview/",
"problemMatcher": [
"$ts-webpack-watch"
],
"group": "build",
"label": "npm: watch - views/searchview",
"detail": "watchify src/search.ts -p tsify -o out/search.js --verbose",
"isBackground": true
},
{
"type": "npm",
"script": "compile",
"path": "views/planview/",
"problemMatcher": [
"$tsc"
],
"group": "build",
"label": "npm: compile - views/planview",
"detail": "npm run lint && browserify src/plans.ts -p tsify > out/plans.js"
},
{
"type": "npm",
"script": "compile",
"path": "views/modelView/",
"group": "build",
"problemMatcher": [
"$tsc"
],
"label": "npm: compile - views/modelView",
"detail": "npm run lint && browserify src/graphView.ts -p tsify > out/graphView.js && browserify src/problemInitView.ts -p tsify > out/problemInitView.js"
}
]
}