launch.json 370 B

123456789101112131415
  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. "trace": true
  13. }
  14. ]
  15. }