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.

37 rivejä
1.4 KiB

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