tsconfig.host.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "extends": "../../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "rootDir": "src",
  5. "outDir": "lib/types",
  6. "tsBuildInfoFile": "lib/tsconfig.host.tsbuildinfo"
  7. },
  8. "files": [
  9. "src/index.ts",
  10. "src/invariant.ts",
  11. "src/remote-events.ts",
  12. "src/types.ts"
  13. ],
  14. "references": [
  15. {
  16. "path": "../../../vendor/cordis"
  17. },
  18. {
  19. "path": "../gateway/tsconfig.host.json"
  20. },
  21. {
  22. "path": "../../core/session"
  23. },
  24. {
  25. "path": "../../credentials/credentials"
  26. },
  27. {
  28. "path": "../../interaction/commands"
  29. },
  30. {
  31. "path": "../../llm/llm"
  32. },
  33. {
  34. "path": "../../preset/agent-presets"
  35. },
  36. {
  37. "path": "../../extensions/cordis-host-runner"
  38. },
  39. {
  40. "path": "../../settings/settings"
  41. },
  42. {
  43. "path": "../../core/scope"
  44. },
  45. {
  46. "path": "../../interaction/user-approval"
  47. },
  48. {
  49. "path": "../../interaction/user-questions"
  50. },
  51. {
  52. "path": "../../runtime-diagnostics/invariants"
  53. },
  54. {
  55. "path": "../session-controller/tsconfig.host.json"
  56. },
  57. {
  58. "path": "../workspace-controller/tsconfig.host.json"
  59. },
  60. {
  61. "path": "../../typert/protocol"
  62. }
  63. ]
  64. }