mirror of
https://github.com/Kuingsmile/PicList.git
synced 2025-01-23 14:48:13 -05:00
d3bb5caa83
#873,#806
27 lines
740 B
JSON
27 lines
740 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "electron-debug",
|
|
"type": "process",
|
|
"command": "./node_modules/.bin/vue-cli-service",
|
|
"windows": {
|
|
"command": "./node_modules/.bin/vue-cli-service.cmd"
|
|
},
|
|
"isBackground": true,
|
|
"args": ["electron:serve", "--debug"],
|
|
"problemMatcher": {
|
|
"owner": "custom",
|
|
"pattern": {
|
|
"regexp": ""
|
|
},
|
|
"background": {
|
|
"beginsPattern": "Starting development server\\.\\.\\.",
|
|
"endsPattern": "Not launching electron as debug argument was passed\\."
|
|
}
|
|
}
|
|
}
|
|
]
|
|
} |