tasks.json 812 B

123456789101112131415161718192021222324252627282930
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "label": "electron-debug",
  8. "type": "process",
  9. "command": "./node_modules/.bin/vue-cli-service",
  10. "windows": {
  11. "command": "./node_modules/.bin/vue-cli-service.cmd"
  12. },
  13. "isBackground": true,
  14. "args": ["electron:serve", "--debug"],
  15. "problemMatcher": {
  16. "owner": "custom",
  17. "pattern": {
  18. "regexp": ""
  19. },
  20. "background": {
  21. "beginsPattern": "Starting development server\\.\\.\\.",
  22. "endsPattern": "Not launching electron as debug argument was passed\\."
  23. }
  24. },
  25. "options": {
  26. "cwd": "${workspaceFolder}/Sample"
  27. }
  28. }
  29. ]
  30. }