tsconfig.json 688 B

12345678910111213141516171819202122
  1. {
  2. "extends": "../../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "composite": true,
  5. "rootDir": "src",
  6. "outDir": "lib/types",
  7. "tsBuildInfoFile": "../../../.typecheck/cli-demo.tsbuildinfo"
  8. },
  9. "include": ["src/**/*.ts"],
  10. "references": [
  11. { "path": "../../../vendor/schemastery" },
  12. { "path": "../../../vendor/cordis" },
  13. { "path": "../../llm/llm" },
  14. { "path": "../../core/session" },
  15. { "path": "../../core/agent" },
  16. { "path": "../../core/system-prompt" },
  17. { "path": "../../core/tools" },
  18. { "path": "../agent-spine-demo" },
  19. { "path": "../../session-persistence/session-persistence-jsonl" },
  20. { "path": "../../ui/app-boot" }
  21. ]
  22. }