launch.json 470 B

123456789101112131415161718
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "node",
  6. "request": "launch",
  7. "name": "Jest Current File",
  8. "program": "${workspaceFolder}/node_modules/.bin/jest",
  9. "args": ["${fileBasenameNoExtension}"],
  10. "console": "integratedTerminal",
  11. "internalConsoleOptions": "neverOpen",
  12. "disableOptimisticBPs": true,
  13. "windows": {
  14. "program": "${workspaceFolder}/node_modules/jest/bin/jest"
  15. }
  16. }
  17. ]
  18. }