Add TSC Task Provider (#27093)

* extract standardLanguageDescriptions to constant

* Remove client variable

* Move VersionStatus into a class

* Add TSC Task Provider

Fixes #26079

Adds a task provider for building typescript projects.

* Make ts loading lazy
This commit is contained in:
Matt Bierner
2017-05-25 15:18:05 -07:00
committed by GitHub
parent 9f48af79ad
commit 6d00bd977b
7 changed files with 235 additions and 76 deletions

View File

@@ -163,7 +163,7 @@ namespace ProblemMatcher {
if (values === void 0 || values === null) {
return undefined;
}
let result: (string | Problems.ProblemMatcher)[];
let result: (string | Problems.ProblemMatcher)[] = [];
for (let value of values) {
let converted = typeof value === 'string' ? value : fromSingle(value);
if (converted) {