Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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