1
0

launch.json 891 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": "Launch",
  11. "program": "${workspaceFolder}/src/index.ts",
  12. "preLaunchTask": "prelaunch",
  13. "outFiles": ["${workspaceFolder}/out/**/*.js"],
  14. "console": "integratedTerminal"
  15. },
  16. {
  17. "type": "node",
  18. "request": "launch",
  19. "name": "test.ts",
  20. "program": "${workspaceFolder}/src/test.ts",
  21. "preLaunchTask": "prelaunch",
  22. "outFiles": ["${workspaceFolder}/out/**/*.js"],
  23. "console": "integratedTerminal"
  24. },
  25. ]
  26. }