launch.json 355 B

1234567891011121314
  1. // A launch configuration that launches the extension inside a new window
  2. {
  3. "version": "0.2.0",
  4. "configurations": [
  5. {
  6. "name": "Extension",
  7. "type": "extensionHost",
  8. "request": "launch",
  9. "args": [
  10. "--extensionDevelopmentPath=${workspaceFolder}"
  11. ]
  12. }
  13. ]
  14. }