tasks.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  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": "Run PHP Server",
  8. "type": "shell",
  9. "command": "php",
  10. "isBackground": true,
  11. "group": "build",
  12. "args": [
  13. "-S",
  14. "localhost:8000",
  15. "-t",
  16. "../.."
  17. ],
  18. "problemMatcher": [
  19. {
  20. "pattern": [
  21. {
  22. "regexp": ".",
  23. "file": 1,
  24. "location": 2,
  25. "message": 3
  26. }
  27. ],
  28. "background": {
  29. "activeOnStart": true,
  30. "beginsPattern": ".",
  31. "endsPattern": "."
  32. }
  33. }
  34. ]
  35. }
  36. ]
  37. }