| 123456789101112131415161718192021222324252627282930 |
- {
- // 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\\."
- }
- },
- "options": {
- "cwd": "${workspaceFolder}/Sample"
- }
- }
- ]
- }
|