launch.json 843 B

12345678910111213141516171819202122232425262728
  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. "name": "Jest",
  9. "type": "node",
  10. "request": "launch",
  11. "program": "${workspaceFolder}/node_modules/.bin/jest",
  12. "stopOnEntry": false,
  13. "args": ["${fileBasename}", "--runInBand", "--detectOpenHandles"],
  14. "cwd": "${workspaceFolder}",
  15. "preLaunchTask": null,
  16. "runtimeExecutable": null,
  17. "runtimeArgs": ["--nolazy"],
  18. "env": {
  19. "NODE_ENV": "development"
  20. },
  21. "console": "integratedTerminal",
  22. "sourceMaps": true,
  23. "windows": {
  24. "program": "${workspaceFolder}/node_modules/jest/bin/jest",
  25. }
  26. }
  27. ]
  28. }