mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-04 01:44:44 -06:00
Adds problemMatcher to vite launch config (#287148)
This commit is contained in:
parent
c0e25e850b
commit
5510e9a2d1
17
.vscode/tasks.json
vendored
17
.vscode/tasks.json
vendored
@ -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",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user