25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

34 satır
1.0 KiB

  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": [
  11. "--extensionDevelopmentPath=${workspaceRoot}"
  12. ],
  13. "stopOnEntry": false,
  14. "sourceMaps": true,
  15. "outFiles": [
  16. "${workspaceRoot}/out/**/*.js"
  17. ]
  18. },
  19. {
  20. "name": "Watch & Launch GitLens",
  21. "type": "extensionHost",
  22. "request": "launch",
  23. "runtimeExecutable": "${execPath}",
  24. "args": [
  25. "--extensionDevelopmentPath=${workspaceRoot}"
  26. ],
  27. "stopOnEntry": false,
  28. "sourceMaps": true,
  29. "outFiles": [
  30. "${workspaceRoot}/out/**/*.js"
  31. ],
  32. "preLaunchTask": "watch"
  33. }
  34. ]
  35. }