tsconfig.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. {
  2. "extends": "../../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "rootDir": "src",
  5. "outDir": "lib/types"
  6. },
  7. "include": [
  8. "src"
  9. ],
  10. "references": [
  11. {
  12. "path": "../../../vendor/cordis"
  13. },
  14. {
  15. "path": "../../../vendor/timer"
  16. },
  17. {
  18. "path": "../../llm/llm"
  19. },
  20. {
  21. "path": "../../llm/llm-deepseek"
  22. },
  23. {
  24. "path": "../../core/session"
  25. },
  26. {
  27. "path": "../../session-title/session-title"
  28. },
  29. {
  30. "path": "../../session-title/session-title-first-message-llm"
  31. },
  32. {
  33. "path": "../../core/system-prompt"
  34. },
  35. {
  36. "path": "../../core/tools"
  37. },
  38. {
  39. "path": "../../core/agent"
  40. },
  41. {
  42. "path": "../../tasks/tasks"
  43. },
  44. {
  45. "path": "../../core/agent-loop"
  46. },
  47. {
  48. "path": "../../session-persistence/session-persistence-jsonl"
  49. },
  50. {
  51. "path": "../../bash/bash-local"
  52. },
  53. {
  54. "path": "../../bash/tool-bash"
  55. },
  56. {
  57. "path": "../../compact/compact-basic"
  58. },
  59. {
  60. "path": "../../fs/fs-local"
  61. },
  62. {
  63. "path": "../../fs/fs-policy"
  64. },
  65. {
  66. "path": "../../fs/tool-fs"
  67. },
  68. {
  69. "path": "../../fs/tool-fs-search"
  70. },
  71. {
  72. "path": "../../context/workspace-context"
  73. },
  74. {
  75. "path": "../../llm/token-meter"
  76. },
  77. {
  78. "path": "../../skill/skill"
  79. },
  80. {
  81. "path": "../../skill/skill-local"
  82. },
  83. {
  84. "path": "../../skill/tool-skill"
  85. },
  86. {
  87. "path": "../../spill/spill-local"
  88. },
  89. {
  90. "path": "../../spill/spill-policy"
  91. },
  92. {
  93. "path": "../../subagent/subagent"
  94. },
  95. {
  96. "path": "../../subagent/subagent-fork"
  97. },
  98. {
  99. "path": "../../subagent/subagent-spawn"
  100. },
  101. {
  102. "path": "../../subagent/tool-subagent"
  103. },
  104. {
  105. "path": "../../support/invariants"
  106. },
  107. {
  108. "path": "../../tasks/tool-tasks"
  109. },
  110. {
  111. "path": "../../timeout/timeout-policy"
  112. },
  113. {
  114. "path": "../../todo/tool-todo"
  115. },
  116. {
  117. "path": "../../workflow/tool-workflow"
  118. },
  119. {
  120. "path": "../../workflow/workflow-workerthread"
  121. },
  122. {
  123. "path": "../apiproxy"
  124. },
  125. {
  126. "path": "../../../vendor/loader"
  127. },
  128. {
  129. "path": "../../client/connection"
  130. },
  131. {
  132. "path": "../../client/runtime"
  133. },
  134. {
  135. "path": "../../client/ui-theme"
  136. },
  137. {
  138. "path": "../../client/i18n"
  139. },
  140. {
  141. "path": "../../client/ui-layout"
  142. },
  143. {
  144. "path": "../../client/ui-sidebar"
  145. },
  146. {
  147. "path": "../../client/ui-conversation"
  148. },
  149. {
  150. "path": "../../client/ui-question"
  151. },
  152. {
  153. "path": "../../client/ui-trajectory"
  154. }
  155. ]
  156. }