launch.json 344 B

1234567891011121314
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "ecaldebug",
  6. "request": "launch",
  7. "name": "Debug ECAL script with ECAL Debug Server",
  8. "host": "localhost",
  9. "port": 33274,
  10. "dir": "${workspaceFolder}",
  11. "executeOnEntry": true
  12. }
  13. ]
  14. }