tsconfig.json 856 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "extends": "../../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "composite": true,
  5. "rootDir": "src",
  6. "outDir": "lib/types"
  7. },
  8. "include": ["src/**/*.ts"],
  9. "references": [
  10. {
  11. "path": "../../../vendor/schemastery"
  12. },
  13. {
  14. "path": "../../../vendor/cordis"
  15. },
  16. {
  17. "path": "../../llm/llm"
  18. },
  19. {
  20. "path": "../../core/session"
  21. },
  22. {
  23. "path": "../../core/agent"
  24. },
  25. {
  26. "path": "../../core/system-prompt"
  27. },
  28. {
  29. "path": "../../core/tools"
  30. },
  31. {
  32. "path": "../agent-spine-demo"
  33. },
  34. {
  35. "path": "../../session-persistence/session-checkpoint-policy"
  36. },
  37. {
  38. "path": "../../session-persistence/session-persistence-jsonl"
  39. },
  40. {
  41. "path": "../../ui/app-boot"
  42. },
  43. {
  44. "path": "../../support/invariants"
  45. }
  46. ]
  47. }