feishin/.vscode/tasks.json

26 lines
706 B
JSON
Raw Permalink Normal View History

2022-12-20 00:59:14 +01:00
{
2023-07-02 04:10:05 +02:00
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"label": "Start Webpack Dev",
"script": "start:renderer",
"options": {
"cwd": "${workspaceFolder}"
},
"isBackground": true,
"problemMatcher": {
"owner": "custom",
"pattern": {
"regexp": "____________"
},
"background": {
"activeOnStart": true,
"beginsPattern": "Compiling\\.\\.\\.$",
"endsPattern": "(Compiled successfully|Failed to compile)\\.$"
}
}
2022-12-20 00:59:14 +01:00
}
2023-07-02 04:10:05 +02:00
]
2022-12-20 00:59:14 +01:00
}