I desire a problem matcher which reports two kinds of problems:
- typescript compilation problems
- tslint problems
This isn't working in one of my projects, but is working in others. Here is the problem matcher line from the .vscode/tasks.json
:
"problemMatcher": [
"$tsc",
{
"owner": "tslint",
"fileLocation": "relative",
"severity": "error",
"pattern": {
"regexp": "^ERROR:\\s*(.*\\.ts)\\[(\\d+), (\\d+)\\]: (.*)$",
"file": 1,
"line": 2,
"column": 3,
"message": 4
}
}
]