launch.json 555 B

12345678910111213141516171819202122
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "node",
  6. "request": "launch",
  7. "name": "app.js",
  8. "skipFiles": [
  9. "<node_internals>/**"
  10. ],
  11. "program": "${workspaceFolder}/src/app.js",
  12. "runtimeVersion": "24.1.0"
  13. },
  14. {
  15. "type": "node-terminal",
  16. "name": "Run Script: start",
  17. "request": "launch",
  18. "command": "npm run start",
  19. "cwd": "${workspaceFolder}"
  20. }
  21. ]
  22. }