選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

38 行
1.4 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. "stopOnEntry": false,
  12. "sourceMaps": true,
  13. "outFiles": ["${workspaceRoot}/out/src/**/*.js"]
  14. },
  15. {
  16. "name": "Build & Launch GitLens",
  17. "type": "extensionHost",
  18. "request": "launch",
  19. "runtimeExecutable": "${execPath}",
  20. "args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
  21. "stopOnEntry": false,
  22. "sourceMaps": true,
  23. "outFiles": ["${workspaceRoot}/out/src/**/*.js"],
  24. "preLaunchTask": "build"
  25. },
  26. {
  27. "name": "Launch Tests",
  28. "type": "extensionHost",
  29. "request": "launch",
  30. "runtimeExecutable": "${execPath}",
  31. "args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
  32. "stopOnEntry": false,
  33. "sourceMaps": true,
  34. "outFiles": ["${workspaceRoot}/out/test/**/*.js"],
  35. "preLaunchTask": "build"
  36. }
  37. ]
  38. }