You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.3 KiB

  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "type": "npm",
  6. "script": "start",
  7. "problemMatcher": {
  8. "owner": "webpack",
  9. "severity": "error",
  10. "fileLocation": "absolute",
  11. "pattern": [
  12. {
  13. "regexp": "ERROR in (.*)",
  14. "file": 1
  15. },
  16. {
  17. "regexp": "\\((\\d+),(\\d+)\\):(.*)",
  18. "line": 1,
  19. "column": 2,
  20. "message": 3
  21. }
  22. ],
  23. "background": {
  24. "activeOnStart": true,
  25. "beginsPattern": "Project is running at",
  26. "endsPattern": "compiled successfully"
  27. }
  28. },
  29. "label": "npm: start",
  30. "detail": "start the development server",
  31. "promptOnClose": true,
  32. "isBackground": true,
  33. },
  34. {
  35. "type": "npm",
  36. "script": "start-no-browser",
  37. "problemMatcher": {
  38. "owner": "webpack",
  39. "severity": "error",
  40. "fileLocation": "absolute",
  41. "pattern": [
  42. {
  43. "regexp": "ERROR in (.*)",
  44. "file": 1
  45. },
  46. {
  47. "regexp": "\\((\\d+),(\\d+)\\):(.*)",
  48. "line": 1,
  49. "column": 2,
  50. "message": 3
  51. }
  52. ],
  53. "background": {
  54. "activeOnStart": true,
  55. "beginsPattern": "Project is running at",
  56. "endsPattern": "compiled successfully"
  57. }
  58. },
  59. "label": "npm: start without browser",
  60. "detail": "start the development server without browser",
  61. "promptOnClose": true,
  62. "isBackground": true,
  63. }
  64. ]
  65. }