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.

29 lines
1000 B

  1. // A launch configuration that compiles the extension and then opens it inside a new window
  2. {
  3. "version": "0.2.0",
  4. "configurations": [
  5. {
  6. "name": "Launch GitLens",
  7. "type": "extensionHost",
  8. "request": "launch",
  9. "runtimeExecutable": "${execPath}",
  10. "args": ["--extensionDevelopmentPath=${workspaceRoot}"],
  11. "stopOnEntry": false,
  12. "smartStep": true,
  13. "sourceMaps": true,
  14. "outFiles": ["${workspaceRoot}/out/**/*.js"]
  15. },
  16. {
  17. "name": "Watch & Launch GitLens",
  18. "type": "extensionHost",
  19. "request": "launch",
  20. "runtimeExecutable": "${execPath}",
  21. "args": ["--extensionDevelopmentPath=${workspaceRoot}"],
  22. "smartStep": true,
  23. "stopOnEntry": false,
  24. "sourceMaps": true,
  25. "outFiles": ["${workspaceRoot}/out/**/*.js"],
  26. "preLaunchTask": "npm: watch"
  27. }
  28. ]
  29. }