You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 rivejä
1.3 KiB

6 vuotta sitten
6 vuotta sitten
6 vuotta sitten
  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. }