launch.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. // A launch configuration that compiles the extension and then opens it 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. "name": "Extension",
  9. "type": "extensionHost",
  10. "request": "launch",
  11. "runtimeExecutable": "${execPath}",
  12. "args": [
  13. "--extensionDevelopmentPath=${workspaceFolder}"
  14. ],
  15. "outFiles": [
  16. "${workspaceFolder}/out/**/*.js"
  17. ],
  18. "preLaunchTask": "npm: watch"
  19. },
  20. {
  21. "name": "Extension Tests",
  22. "type": "extensionHost",
  23. "request": "launch",
  24. "runtimeExecutable": "${execPath}",
  25. "args": [
  26. "--extensionDevelopmentPath=${workspaceFolder}",
  27. "--extensionTestsPath=${workspaceFolder}/out/test"
  28. ],
  29. "outFiles": [
  30. "${workspaceFolder}/out/test/**/*.js"
  31. ],
  32. "preLaunchTask": "npm: watch"
  33. }
  34. ]
  35. }