Add tsc problem matcher (#9)

* Add tsc problem matcher

* Update readme
This commit is contained in:
Danny McCormick 2019-06-17 16:21:20 -04:00 committed by GitHub
parent 4ac54ebb92
commit 82902559de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 19 additions and 3 deletions

16
.github/tsc.json vendored Normal file
View file

@ -0,0 +1,16 @@
{
"problemMatcher": [
{
"owner": "tsc",
"pattern": [
{
"regexp": "/^([^\\s].*)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\):\\s+(\\d+)\\s+(.*)$/",
"file": 1,
"location": 2,
"code": 3,
"message": 4
}
]
}
]
}