tsconfig.host.json 970 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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/agent-lookup.ts",
  10. "src/index.ts",
  11. "src/invariant.ts",
  12. "src/remote-events.ts",
  13. "src/types.ts"
  14. ],
  15. "references": [
  16. {
  17. "path": "../../../vendor/cordis"
  18. },
  19. {
  20. "path": "../../core/agent"
  21. },
  22. {
  23. "path": "../../core/session"
  24. },
  25. {
  26. "path": "../../credentials/credentials"
  27. },
  28. {
  29. "path": "../../interaction/commands"
  30. },
  31. {
  32. "path": "../../llm/llm"
  33. },
  34. {
  35. "path": "../../preset/agent-presets"
  36. },
  37. {
  38. "path": "../../session/session-persistence"
  39. },
  40. {
  41. "path": "../../settings/settings"
  42. },
  43. {
  44. "path": "../../support/invariants"
  45. },
  46. {
  47. "path": "../../typert/registry"
  48. },
  49. {
  50. "path": "../../typert/type-meta"
  51. }
  52. ]
  53. }