Fixes #22730: Contributed problem matchers must use ${cwd} not $cwd

This commit is contained in:
Dirk Baeumer
2017-03-16 10:47:11 +01:00
parent 5308f22c6e
commit d3efc931f7

View File

@@ -382,14 +382,14 @@
"name": "tsc",
"owner": "typescript",
"applyTo": "closedDocuments",
"fileLocation": ["relative", "$cwd"],
"fileLocation": ["relative", "${cwd}"],
"pattern": "$tsc"
},
{
"name": "tsc-watch",
"owner": "typescript",
"applyTo": "closedDocuments",
"fileLocation": ["relative", "$cwd"],
"fileLocation": ["relative", "${cwd}"],
"pattern": "$tsc",
"watching": {
"activeOnStart": true,