Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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