launch.json 893 B

1234567891011121314151617181920212223242526
  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 Extension",
  7. "type": "extensionHost",
  8. "request": "launch",
  9. "args": ["--extensionDevelopmentPath=${workspaceFolder}"],
  10. "outFiles": ["${workspaceFolder}/out/**/*.js"],
  11. "preLaunchTask": "${defaultBuildTask}"
  12. },
  13. {
  14. "name": "Launch Extension Tests",
  15. "type": "extensionHost",
  16. "request": "launch",
  17. "runtimeExecutable": "${execPath}",
  18. "args": [
  19. "--extensionDevelopmentPath=${workspaceFolder}",
  20. "--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
  21. ],
  22. "outFiles": ["${workspaceFolder}/out/test/**/*.js"]
  23. }
  24. ]
  25. }