tsconfig.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "extends": "../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "rootDir": ".",
  5. "outDir": "lib/types",
  6. "jsx": "react-jsx",
  7. "lib": [
  8. "ES2024",
  9. "DOM",
  10. "DOM.Iterable"
  11. ],
  12. "types": [
  13. "node"
  14. ]
  15. },
  16. "include": [
  17. "src",
  18. "tests"
  19. ],
  20. // The web e2e lane (scaffold + replay specs) boots the host spine and reads
  21. // its Context merges — host-plane programs, checked in tsconfig.host.json;
  22. // this client-registered project must not also hold them (one program
  23. // cannot see both sides of the cordis Context merges).
  24. "exclude": [
  25. "tests/scaffold.ts",
  26. "tests/live-interactions.e2e.ts",
  27. "tests/question-composer.e2e.ts",
  28. "tests/steering.e2e.ts",
  29. "tests/navigation-panes.e2e.ts",
  30. "tests/lifecycle-chrome.e2e.ts",
  31. "tests/details-session-lifecycle.e2e.ts",
  32. "tests/settings-chrome.e2e.ts",
  33. "tests/workspace-management.e2e.ts",
  34. "tests/replay-round-trip.e2e.ts",
  35. "tests/seeded-history.e2e.ts",
  36. "tests/sidebar-scrollbar.e2e.ts",
  37. "tests/code-mode-round.e2e.ts",
  38. "tests/cordis-tool-round.e2e.ts",
  39. "tests/message-actions.e2e.ts"
  40. ],
  41. "references": [
  42. {
  43. "path": "../../packages/client/web"
  44. },
  45. {
  46. "path": "../../packages/client/modules"
  47. }
  48. ]
  49. }