Advertisement
Guest User

Untitled

a guest
Jan 18th, 2020
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7.  
  8. {
  9. "type": "node",
  10. "request": "attach",
  11. "name": "Attach",
  12. "port": 9229,
  13. "skipFiles": [
  14. "<node_internals>/**"
  15. ]
  16. },
  17.  
  18. {
  19. "name": "Listen for XDebug",
  20. "type": "php",
  21. "request": "launch",
  22. "port": 9000
  23. },
  24. {
  25. "name": "Launch currently open script",
  26. "type": "php",
  27. "request": "launch",
  28. "program": "${file}",
  29. "cwd": "${fileDirname}",
  30. "port": 9000
  31. }
  32. ]
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement