tsconfig.json 578 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "extends": "../../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "rootDir": "src",
  5. "outDir": "lib/types",
  6. "tsBuildInfoFile": "lib/types/.tsbuildinfo"
  7. },
  8. "include": [
  9. "src/**/*.ts"
  10. ],
  11. "references": [
  12. {
  13. "path": "../../../vendor/cordis"
  14. },
  15. {
  16. "path": "../../../vendor/schemastery"
  17. },
  18. {
  19. "path": "../../llm/llm"
  20. },
  21. {
  22. "path": "../../core/session"
  23. },
  24. {
  25. "path": "../subagent"
  26. },
  27. {
  28. "path": "../../subprocess/subprocess"
  29. },
  30. {
  31. "path": "../../util/timeout"
  32. }
  33. ]
  34. }