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ů.

29 řádky
1.1 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. "outFiles": ["${workspaceRoot}/dist/**/*.js"],
  12. "skipFiles": ["<node_internals>/**/*.js", "**/node_modules/**/*.js", "**/extensions/**/*.js"],
  13. "smartStep": true,
  14. "sourceMaps": true
  15. },
  16. {
  17. "name": "Watch & Launch GitLens",
  18. "type": "extensionHost",
  19. "request": "launch",
  20. "runtimeExecutable": "${execPath}",
  21. "args": ["--extensionDevelopmentPath=${workspaceRoot}"],
  22. "outFiles": ["${workspaceRoot}/dist/**/*.js"],
  23. "skipFiles": ["<node_internals>/**/*.js", "**/node_modules/**/*.js", "**/extensions/**/*.js"],
  24. "smartStep": true,
  25. "sourceMaps": true,
  26. "preLaunchTask": "npm: watch"
  27. }
  28. ]
  29. }