launch.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. "type": "node",
  9. "request": "launch",
  10. "name": "JokeAPI",
  11. "skipFiles": [
  12. "<node_internals>/**"
  13. ],
  14. "program": "${workspaceFolder}/JokeAPI.js",
  15. "args": [
  16. "--trace-deprecation"
  17. ]
  18. },
  19. {
  20. "program": "${workspaceFolder}/tools/test.js",
  21. "name": "Unit Tests",
  22. "request": "launch",
  23. "type": "node",
  24. "skipFiles": [
  25. "<node_internals>/**"
  26. ],
  27. "args": [
  28. "--trace-deprecation"
  29. ],
  30. "console": "integratedTerminal"
  31. },
  32. {
  33. "program": "${workspaceFolder}/tools/info.js",
  34. "name": "Tools/xy",
  35. "request": "launch",
  36. "type": "node",
  37. "skipFiles": [
  38. "<node_internals>/**"
  39. ],
  40. "args": [
  41. "--trace-deprecation"
  42. ],
  43. "console": "integratedTerminal"
  44. },
  45. {
  46. "program": "${workspaceFolder}/tools/cli.js",
  47. "name": "CLI",
  48. "request": "launch",
  49. "type": "node",
  50. "skipFiles": [
  51. "<node_internals>/**"
  52. ],
  53. "args": [
  54. "--trace-deprecation"
  55. ],
  56. "console": "integratedTerminal"
  57. }
  58. ],
  59. "debug.javascript.usePreview": true
  60. }