feat: allow folder of problem matcher registration

Allows registering of new problem matchers by adding them to folder
This commit is contained in:
Nick Schonning 2020-08-15 14:09:05 -04:00
parent 59e61b8951
commit f87656b688
5 changed files with 14 additions and 12 deletions

17
.github/tsc.json vendored
View file

@ -1,17 +0,0 @@
{
"problemMatcher": [
{
"owner": "tsc",
"pattern": [
{
"regexp": "^(?:\\s+\\d+\\>)?([^\\s].*)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\)\\s*:\\s+(error|warning|info)\\s+(\\w{1,2}\\d+)\\s*:\\s*(.*)$",
"file": 1,
"location": 2,
"severity": 3,
"code": 4,
"message": 5
}
]
}
]
}