launch.json 757 B

12345678910111213141516171819202122232425262728
  1. // A launch configuration that launches the extension inside a new window
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. {
  6. "version": "0.2.0",
  7. "configurations": [
  8. {
  9. "name": "Extension",
  10. "type": "extensionHost",
  11. "request": "launch",
  12. "runtimeExecutable": "${execPath}",
  13. "args": [
  14. "--extensionDevelopmentPath=${workspaceFolder}"
  15. ]
  16. },
  17. {
  18. "name": "Extension Tests",
  19. "type": "extensionHost",
  20. "request": "launch",
  21. "runtimeExecutable": "${execPath}",
  22. "args": [
  23. "--extensionDevelopmentPath=${workspaceFolder}",
  24. "--extensionTestsPath=${workspaceFolder}/test"
  25. ]
  26. }
  27. ]
  28. }