launch.json 706 B

12345678910111213141516171819202122232425262728
  1. {
  2. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  3. "version": "0.2.0",
  4. "configurations": [
  5. {
  6. "name": "Attach by Process ID",
  7. "processId": "${command:PickProcess}",
  8. "request": "attach",
  9. "skipFiles": ["<node_internals>/**"],
  10. "type": "node"
  11. },
  12. {
  13. "name": "Attach to vite",
  14. "port": 5174,
  15. "request": "attach",
  16. "skipFiles": ["<node_internals>/**"],
  17. "type": "node"
  18. },
  19. {
  20. "name": "fe-server",
  21. "type": "node",
  22. "request": "launch",
  23. "cwd": "${workspaceRoot}/packages/tres",
  24. "runtimeExecutable": "npm",
  25. "runtimeArgs": ["run", "dev", "--preserve-symlinks"]
  26. }
  27. ]
  28. }