Guest User

Untitled

a guest
Feb 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Jest", // This is the configuration name you will see in debug sidebar
  6. "type": "node",
  7. "request": "launch",
  8. "port": 9229,
  9. "address": "localhost",
  10. "stopOnEntry": false,
  11. "runtimeExecutable": null,
  12. "env": {
  13. "NODE_ENV": "production" // You can setup here any env vars you
  14. },
  15. "runtimeArgs": [
  16. "--inspect-brk",
  17. "./node_modules/.bin/jest", // Path to Jest
  18. "--runInBand",
  19. "--watch"
  20. ],
  21. "cwd": "${workspaceRoot}"
  22. }
  23. ]
  24. }
Add Comment
Please, Sign In to add comment