You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
476 B

  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "node",
  6. "request": "launch",
  7. "name": "Launch via NPM",
  8. "runtimeExecutable": "npm",
  9. "runtimeArgs": [
  10. "run-script",
  11. "schematics-debug"
  12. ],
  13. "stopOnEntry": true,
  14. "port": 9229,
  15. "skipFiles": [
  16. "<node_internals>/**"
  17. ],
  18. "resolveSourceMapLocations": [
  19. "${workspaceFolder}/**",
  20. "!**/node_modules/**"
  21. ],
  22. }
  23. ]
  24. }