Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

35 řádky
1.3 KiB

před 6 roky
před 6 roky
  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. "outFiles": ["${workspaceFolder}/dist/**/*.js"],
  15. "skipFiles": ["<node_internals>/**", "**/node_modules/**", "**/app/out/vs/**", "**/extensions/**"],
  16. "smartStep": true,
  17. "sourceMaps": true
  18. },
  19. {
  20. "name": "Watch & Launch GitLens",
  21. "type": "extensionHost",
  22. "request": "launch",
  23. "runtimeExecutable": "${execPath}",
  24. "env": {
  25. "VSCODE_DEBUGGING_EXTENSION": "gitlens"
  26. },
  27. "args": ["--extensionDevelopmentPath=${workspaceFolder}"],
  28. "outFiles": ["${workspaceFolder}/dist/**/*.js"],
  29. "skipFiles": ["<node_internals>/**", "**/node_modules/**", "**/app/out/vs/**", "**/extensions/**"],
  30. "smartStep": true,
  31. "sourceMaps": true,
  32. "preLaunchTask": "npm: watch"
  33. }
  34. ]
  35. }