launch.json 731 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. // 使用 IntelliSense 了解相关属性。
  3. // 悬停以查看现有属性的描述。
  4. // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "typescript",
  9. "type": "node",
  10. "request": "launch",
  11. "program": "${workspaceRoot}/dist/test.js",
  12. "args": [],
  13. "cwd": "${workspaceRoot}",
  14. "protocol": "inspector"
  15. },
  16. {
  17. "type": "node",
  18. "request": "launch",
  19. "name": "cli",
  20. "program": "${workspaceFolder}/bin/qqwry-find",
  21. "args": ["Google"]
  22. },
  23. {
  24. "type": "node",
  25. "request": "launch",
  26. "name": "this js",
  27. "program": "${file}"
  28. }
  29. ]
  30. }