Merge pull request #204 from yi-Xu-0100/patch-1

fix: update `problemMatcher`
This commit is contained in:
草鞋没号 2022-07-24 11:29:27 +08:00 committed by GitHub
commit f877b5b1c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

18
.vscode/tasks.json vendored
View File

@ -8,7 +8,23 @@
"type": "shell",
"command": "node .vscode/.debug.script.mjs",
"isBackground": true,
"problemMatcher": []
"problemMatcher": {
"owner": "typescript",
"fileLocation": "relative",
"pattern": {
"regexp": "^([a-zA-Z]\\:\/?([\\w\\-]\/?)+\\.\\w+):(\\d+):(\\d+): (ERROR|WARNING)\\: (.*)$",
"file": 1,
"line": 3,
"column": 4,
"code": 5,
"message": 6
},
"background": {
"activeOnStart": true,
"beginsPattern": "^.*building for development.*$",
"endsPattern": "built in [0-9]*ms.*$",
}
}
}
]
}