UNPKG

706 BJSONView Raw
1{
2 "version": "0.1.0",
3 "tasks": [
4 {
5 "taskName": "tsc",
6 "command": "yarn",
7 "args": [
8 "tsc"
9 ],
10 "isShellCommand": true,
11 "isBackground": true,
12 "isBuildCommand": true,
13 "problemMatcher": "$tsc"
14 },
15 {
16 "taskName": "lint",
17 "command": "yarn",
18 "args": [
19 "lint"
20 ],
21 "isShellCommand": true,
22 "problemMatcher": {
23 "owner": "tslint",
24 "fileLocation": "relative",
25 "severity": "warning",
26 "pattern": {
27 "regexp": "^(\\S.*)\\[(\\d+), (\\d+)\\]:\\s+(.*)$",
28 "file": 1,
29 "line": 2,
30 "column": 3,
31 "message": 4
32 }
33 }
34 }
35 ]
36}