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.

67 Zeilen
1.8 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=${workspaceFolder}"],
  11. "env": {
  12. "VSCODE_DEBUGGING_EXTENSION": "gitlens"
  13. },
  14. "cwd": "${workspaceFolder}",
  15. "outFiles": ["${workspaceFolder}/dist/**/*.js"],
  16. "presentation": {
  17. "group": "2_launch",
  18. "order": 1
  19. },
  20. "skipFiles": ["<node_internals>/**", "**/node_modules/**", "**/resources/app/out/vs/**"],
  21. "smartStep": true,
  22. "sourceMaps": true,
  23. "trace": true
  24. },
  25. {
  26. "name": "Launch GitLens (Sandbox)",
  27. "type": "extensionHost",
  28. "request": "launch",
  29. "runtimeExecutable": "${execPath}",
  30. "args": ["--disable-extensions", "--extensionDevelopmentPath=${workspaceFolder}"],
  31. "env": {
  32. "VSCODE_DEBUGGING_EXTENSION": "gitlens"
  33. },
  34. "cwd": "${workspaceFolder}",
  35. "outFiles": ["${workspaceFolder}/dist/**/*.js"],
  36. "presentation": {
  37. "group": "2_launch",
  38. "order": 2
  39. },
  40. "skipFiles": ["<node_internals>/**", "**/node_modules/**", "**/resources/app/out/vs/**"],
  41. "smartStep": true,
  42. "sourceMaps": true,
  43. "trace": true
  44. },
  45. {
  46. "name": "Watch & Launch GitLens",
  47. "type": "extensionHost",
  48. "request": "launch",
  49. "runtimeExecutable": "${execPath}",
  50. "env": {
  51. "VSCODE_DEBUGGING_EXTENSION": "gitlens"
  52. },
  53. "args": ["--extensionDevelopmentPath=${workspaceFolder}"],
  54. "cwd": "${workspaceFolder}",
  55. "outFiles": ["${workspaceFolder}/dist/**/*.js"],
  56. "preLaunchTask": "npm: watch",
  57. "presentation": {
  58. "group": "1_watch",
  59. "order": 1
  60. },
  61. "skipFiles": ["<node_internals>/**", "**/node_modules/**", "**/resources/app/out/vs/**"],
  62. "smartStep": true,
  63. "sourceMaps": true,
  64. "trace": true
  65. }
  66. ]
  67. }