Contribute problem matcher for the webpack ts-loader #29619
Closed
Description
I'm using an angular starter kit https://github.com/AngularClass/angular-starter to create an angular app and I wanted to setup tasks and a problem matcher for the build.
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build",
"problemMatcher": [
"$tsc"
]
}
]
}
However, TS loader for web pack is using a different error message format than tsc, see below. It would be good to have a predefined problem matcher.
ERROR in [at-loader] ./src/app/environment.ts:4:9
TS1005: ';' expected.