2022-02-14 17:48:27 +08:00
|
|
|
{
|
2022-03-15 08:35:11 +08:00
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
2022-07-23 17:14:56 +08:00
|
|
|
"label": "Before Debug",
|
2022-03-15 08:35:11 +08:00
|
|
|
"type": "shell",
|
|
|
|
"command": "node .vscode/.debug.script.mjs",
|
|
|
|
"isBackground": true,
|
2022-07-24 10:06:34 +08:00
|
|
|
"problemMatcher": {
|
|
|
|
"owner": "typescript",
|
|
|
|
"fileLocation": "relative",
|
|
|
|
"pattern": {
|
2022-10-03 09:16:14 +08:00
|
|
|
// TODO: correct "regexp"
|
2022-07-24 10:06:34 +08:00
|
|
|
"regexp": "^([a-zA-Z]\\:\/?([\\w\\-]\/?)+\\.\\w+):(\\d+):(\\d+): (ERROR|WARNING)\\: (.*)$",
|
|
|
|
"file": 1,
|
|
|
|
"line": 3,
|
|
|
|
"column": 4,
|
|
|
|
"code": 5,
|
|
|
|
"message": 6
|
|
|
|
},
|
|
|
|
"background": {
|
|
|
|
"activeOnStart": true,
|
2022-10-03 09:16:14 +08:00
|
|
|
"endsPattern": "^.*[startup] Electron App.*$",
|
2022-07-24 10:06:34 +08:00
|
|
|
}
|
|
|
|
}
|
2022-03-15 08:35:11 +08:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|