Why doesn't this problemMatcher in VS code work?
问题 Why doesnt my problemMatcher work? I'm pretty sure about the regex, but it doesn't report any problems, even there are some on stdout... // the matcher "problemMatcher": { "owner": "typescript", "fileLocation": ["relative", "${workspaceRoot}"], "pattern": { "regexp": "^TypeScript (warning|error): (.*)\\((\\d+),(\\d+)\\): (.*)$", "severity": 1, "file": 2, "line": 3, "column": 4, "message": 5 } } //the browserify/tsify pipeline browserify().add('main.ts') .plugin(tsify, { noImplicitAny: false,