forked from microsoft/vscode-node-debug
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtasks.json
More file actions
37 lines (37 loc) · 741 Bytes
/
Copy pathtasks.json
File metadata and controls
37 lines (37 loc) · 741 Bytes
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
{
"version": "2.0.0",
"command": "./node_modules/.bin/gulp",
"windows": {
"command": ".\\node_modules\\.bin\\gulp"
},
"type": "shell",
"tasks": [
{
"taskName": "ts-watch",
"args": [
"--no-color"
],
"group": "build",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"applyTo": "closedDocuments",
"fileLocation": [ "absolute" ],
"pattern": {
"regexp": "Error: ([^(]+)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\): (.*)$",
"file": 1,
"location": 2,
"message": 3
},
"background": {
"beginsPattern": "Starting compilation",
"endsPattern": "Finished compilation"
}
}
},
{
"taskName": "tslint",
"problemMatcher": "$tslint5"
}
]
}