launch.json 771 B

1234567891011121314151617181920212223242526
  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": "Day1-Part1",
  11. "skipFiles": [
  12. "<node_internals>/**"
  13. ],
  14. "program": "${workspaceFolder}\\Day 1\\part1.js"
  15. },
  16. {
  17. "type": "node",
  18. "request": "launch",
  19. "name": "Day1-Part2",
  20. "skipFiles": [
  21. "<node_internals>/**"
  22. ],
  23. "program": "${workspaceFolder}\\Day 1\\part2.js"
  24. }
  25. ]
  26. }