Adds problemMatcher to vite launch config (#287148)

This commit is contained in:
Henning Dieterichs 2026-01-12 20:10:01 +01:00 committed by GitHub
parent c0e25e850b
commit 5510e9a2d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

17
.vscode/tasks.json vendored
View File

@ -286,6 +286,23 @@
"cwd": "./build/vite/"
},
"isBackground": true,
"problemMatcher": {
"owner": "vite",
"fileLocation": "absolute",
"pattern": {
"regexp": "^(.+?):(\\d+):(\\d+):\\s+(error|warning)\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
},
"background": {
"activeOnStart": true,
"beginsPattern": ".*VITE.*",
"endsPattern": "(Local|Network):.*"
}
}
},
{
"label": "Launch MCP Server",