launch.json 778 B

123456789101112131415161718192021222324252627282930
  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 Program",
  11. "program": "${workspaceFolder}/examples/array-change.js"
  12. },
  13. {
  14. "name": "Run mocha",
  15. "type": "node",
  16. "request": "launch",
  17. "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
  18. "stopOnEntry": false,
  19. "args": [
  20. "test/**/*.js",
  21. "--no-timeouts"
  22. ],
  23. "cwd": "${workspaceRoot}",
  24. "runtimeExecutable": null,
  25. "env": {
  26. "NODE_ENV": "testing"
  27. }
  28. }
  29. ]
  30. }