launch.json 292 B

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