tsconfig.json 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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-generation.spec.ts",
  27. "tests/scaffold-hermetic.e2e.ts",
  28. "tests/startup-rpc-budget.e2e.ts",
  29. "tests/minimal-preset.snapshot.ts",
  30. "tests/message-feedback-protocol.snapshot.ts",
  31. "tests/live-interactions.e2e.ts",
  32. "tests/question-composer.e2e.ts",
  33. "tests/approval-composer.e2e.ts",
  34. "tests/plan-control-row.e2e.ts",
  35. "tests/plan-review.e2e.ts",
  36. "tests/steering.e2e.ts",
  37. "tests/navigation-panes.e2e.ts",
  38. "tests/chat-scroll-fixture.ts",
  39. "tests/trajectory-virtualization.e2e.ts",
  40. "tests/lifecycle-chrome.e2e.ts",
  41. "tests/details-session-lifecycle.e2e.ts",
  42. "tests/plugin-config.e2e.ts",
  43. "tests/settings-chrome.e2e.ts",
  44. "tests/models-settings.e2e.ts",
  45. "tests/default-model.e2e.ts",
  46. "tests/github-ready-review.e2e.ts",
  47. "tests/streaming-fence-highlight.e2e.ts",
  48. "tests/declared-reasoning.e2e.ts",
  49. "tests/onboarding-deepseek-config.e2e.ts",
  50. "tests/onboarding-usable-provider.e2e.ts",
  51. "tests/remote-welcome.e2e.ts",
  52. "tests/workspace-new-session-folding.e2e.ts",
  53. "tests/workspace-management.e2e.ts",
  54. "tests/replay-round-trip.e2e.ts",
  55. "tests/hmr-live.e2e.ts",
  56. "tests/preview-boot.e2e.ts",
  57. "tests/seeded-history.e2e.ts",
  58. "tests/stats-paged-history.e2e.ts",
  59. "tests/sidebar-scrollbar.e2e.ts",
  60. "tests/rail-search-expand.e2e.ts",
  61. "tests/conversation-column-overflow.e2e.ts",
  62. "tests/ptc-round.e2e.ts",
  63. "tests/composer-draft-scroll.e2e.ts",
  64. "tests/cordis-tool-round.e2e.ts",
  65. "tests/web-search-round.e2e.ts",
  66. "tests/file-upload-round.e2e.ts",
  67. "tests/message-actions.e2e.ts",
  68. "tests/message-feedback.e2e.ts",
  69. "tests/message-feedback-layout.e2e.ts",
  70. "tests/markdown-images.e2e.ts",
  71. "tests/reference-composer.e2e.ts",
  72. "tests/markdown-wide-table.e2e.ts",
  73. "tests/math-rendering.e2e.ts",
  74. "tests/markdown-cjk-strong.e2e.ts",
  75. "tests/markdown-inline-code-links.e2e.ts",
  76. "tests/clickable-links-gallery.e2e.ts",
  77. "tests/queue-actions.e2e.ts",
  78. "tests/queue-image.e2e.ts",
  79. "tests/skill-invocation-policy.e2e.ts",
  80. "tests/skill-user-invoke.e2e.ts",
  81. "tests/permission-policy-context.e2e.ts",
  82. "tests/access-confirmation.e2e.ts",
  83. "tests/agent-preset-selection.e2e.ts",
  84. "tests/agent-preset-authoring.e2e.ts",
  85. "tests/shipped-composition.e2e.ts",
  86. "tests/schedule-after.e2e.ts",
  87. "tests/feedback-command.e2e.ts",
  88. "tests/feedback-release.e2e.ts",
  89. "tests/agent-team-panel.e2e.ts",
  90. "tests/startup-auto-selection.e2e.ts",
  91. "tests/produced-files.e2e.ts",
  92. "tests/produced-file-mentions.e2e.ts",
  93. "tests/goal-bar.e2e.ts",
  94. "tests/goal-command-presentation.e2e.ts",
  95. "tests/subagent-conversation.e2e.ts",
  96. "tests/subagent-interrupt.e2e.ts",
  97. "tests/subagent-interrupt-ui.e2e.ts",
  98. "tests/sidebar-subagent-activity.e2e.ts",
  99. "tests/background-job-list.e2e.ts",
  100. "tests/bash-abort-row.e2e.ts",
  101. "tests/skill-tool-row.e2e.ts",
  102. "tests/turn-tail-actions.e2e.ts",
  103. "tests/goal-multi-turn-actions.e2e.ts",
  104. "tests/chat-scroll-fixture.ts",
  105. "tests/chat-scroll-contract.e2e.ts",
  106. "tests/chat-long-interactions.e2e.ts",
  107. "tests/chat-continuous-conversation.e2e.ts",
  108. "tests/composer-tab-geometry.e2e.ts",
  109. "tests/complex-history.perf.ts",
  110. "tests/pwsh-terminal.e2e.ts",
  111. "tests/workflow-run.e2e.ts"
  112. ],
  113. "references": [
  114. {
  115. "path": "../../packages/client/store"
  116. },
  117. {
  118. "path": "../../packages/client/web"
  119. },
  120. {
  121. "path": "../../packages/client/modules"
  122. }
  123. ]
  124. }