mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-12 14:37:21 +03:00
93 lines
2.3 KiB
JSON
93 lines
2.3 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "npm",
|
|
"label": "webpack: dev server",
|
|
"script": "dev",
|
|
"promptOnClose": true,
|
|
"isBackground": true,
|
|
"problemMatcher": {
|
|
"owner": "webpack",
|
|
"severity": "error",
|
|
"fileLocation": "absolute",
|
|
"pattern": [
|
|
{
|
|
"regexp": "ERROR in (.*)",
|
|
"file": 1
|
|
},
|
|
{
|
|
"regexp": "\\((\\d+),(\\d+)\\):(.*)",
|
|
"line": 1,
|
|
"column": 2,
|
|
"message": 3
|
|
}
|
|
],
|
|
"background": {
|
|
"activeOnStart": true,
|
|
"beginsPattern": "Compiling\\.\\.\\.",
|
|
"endsPattern": "Compiled successfully\\."
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"label": "webpack: prod server",
|
|
"script": "prod",
|
|
"promptOnClose": true,
|
|
"isBackground": true,
|
|
"problemMatcher": {
|
|
"owner": "webpack",
|
|
"severity": "error",
|
|
"fileLocation": "absolute",
|
|
"pattern": [
|
|
{
|
|
"regexp": "ERROR in (.*)",
|
|
"file": 1
|
|
},
|
|
{
|
|
"regexp": "\\((\\d+),(\\d+)\\):(.*)",
|
|
"line": 1,
|
|
"column": 2,
|
|
"message": 3
|
|
}
|
|
],
|
|
"background": {
|
|
"activeOnStart": true,
|
|
"beginsPattern": "Compiling\\.\\.\\.",
|
|
"endsPattern": "Compiled successfully\\."
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"label": "webpack: build",
|
|
"script": "build",
|
|
"promptOnClose": true,
|
|
"isBackground": true,
|
|
"problemMatcher": {
|
|
"owner": "webpack",
|
|
"severity": "error",
|
|
"fileLocation": "absolute",
|
|
"pattern": [
|
|
{
|
|
"regexp": "ERROR in (.*)",
|
|
"file": 1
|
|
},
|
|
{
|
|
"regexp": "\\((\\d+),(\\d+)\\):(.*)",
|
|
"line": 1,
|
|
"column": 2,
|
|
"message": 3
|
|
}
|
|
],
|
|
"background": {
|
|
"activeOnStart": true,
|
|
"beginsPattern": "Compiling\\.\\.\\.",
|
|
"endsPattern": "Compiled successfully\\."
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|