tsconfig.host.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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/remote-events.ts",
  11. "src/types.ts"
  12. ],
  13. "references": [
  14. {
  15. "path": "../../../vendor/cordis"
  16. },
  17. {
  18. "path": "../gateway/tsconfig.host.json"
  19. },
  20. {
  21. "path": "../../core/session"
  22. },
  23. {
  24. "path": "../../credentials/credentials"
  25. },
  26. {
  27. "path": "../../interaction/commands"
  28. },
  29. {
  30. "path": "../../llm/llm"
  31. },
  32. {
  33. "path": "../../preset/agent-presets"
  34. },
  35. {
  36. "path": "../../extensions/cordis-host-runner"
  37. },
  38. {
  39. "path": "../../settings/settings"
  40. },
  41. {
  42. "path": "../../core/scope"
  43. },
  44. {
  45. "path": "../../util/deque"
  46. },
  47. {
  48. "path": "../../util/values"
  49. },
  50. {
  51. "path": "../../interaction/user-approval"
  52. },
  53. {
  54. "path": "../../interaction/user-questions"
  55. },
  56. {
  57. "path": "../session-controller/tsconfig.host.json"
  58. },
  59. {
  60. "path": "../workspace-controller/tsconfig.host.json"
  61. },
  62. {
  63. "path": "../../typert/protocol"
  64. }
  65. ]
  66. }