tsconfig.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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/scaffold-hermetic.e2e.ts",
  27. "tests/core-web-profile.snapshot.ts",
  28. "tests/live-interactions.e2e.ts",
  29. "tests/question-composer.e2e.ts",
  30. "tests/approval-composer.e2e.ts",
  31. "tests/plan-review.e2e.ts",
  32. "tests/steering.e2e.ts",
  33. "tests/navigation-panes.e2e.ts",
  34. "tests/chat-scroll-fixture.ts",
  35. "tests/trajectory-virtualization.e2e.ts",
  36. "tests/lifecycle-chrome.e2e.ts",
  37. "tests/details-session-lifecycle.e2e.ts",
  38. "tests/settings-chrome.e2e.ts",
  39. "tests/models-settings.e2e.ts",
  40. "tests/onboarding-deepseek-config.e2e.ts",
  41. "tests/remote-welcome.e2e.ts",
  42. "tests/workspace-management.e2e.ts",
  43. "tests/replay-round-trip.e2e.ts",
  44. "tests/hmr-live.e2e.ts",
  45. "tests/seeded-history.e2e.ts",
  46. "tests/sidebar-scrollbar.e2e.ts",
  47. "tests/code-mode-round.e2e.ts",
  48. "tests/composer-draft-scroll.e2e.ts",
  49. "tests/cordis-tool-round.e2e.ts",
  50. "tests/web-search-round.e2e.ts",
  51. "tests/message-actions.e2e.ts",
  52. "tests/markdown-images.e2e.ts",
  53. "tests/math-rendering.e2e.ts",
  54. "tests/queue-actions.e2e.ts",
  55. "tests/skill-invocation-policy.e2e.ts",
  56. "tests/permission-policy-context.e2e.ts",
  57. "tests/access-confirmation.e2e.ts",
  58. "tests/shipped-composition.e2e.ts",
  59. "tests/goal-bar.e2e.ts",
  60. "tests/startup-auto-selection.e2e.ts",
  61. "tests/subagent-conversation.e2e.ts",
  62. "tests/bash-abort-row.e2e.ts",
  63. "tests/chat-scroll-fixture.ts",
  64. "tests/chat-scroll-contract.e2e.ts",
  65. "tests/chat-long-interactions.e2e.ts",
  66. "tests/chat-continuous-conversation.e2e.ts",
  67. "tests/composer-tab-geometry.e2e.ts",
  68. "tests/complex-history.perf.ts",
  69. "tests/pwsh-terminal.e2e.ts"
  70. ],
  71. "references": [
  72. {
  73. "path": "../../packages/client/web"
  74. },
  75. {
  76. "path": "../../packages/client/modules"
  77. }
  78. ]
  79. }