setup-node/.github/tsc.json
Danny McCormick 82902559de
Add tsc problem matcher (#9)
* Add tsc problem matcher

* Update readme
2019-06-17 16:21:20 -04:00

16 lines
No EOL
395 B
JSON

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