tsconfig.json 869 B

1234567891011121314151617181920212223242526272829303132333435363738
  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/replay-round-trip.e2e.ts",
  27. "tests/seeded-history.e2e.ts",
  28. "tests/code-mode-round.e2e.ts"
  29. ],
  30. "references": [
  31. {
  32. "path": "../../packages/client/web"
  33. },
  34. {
  35. "path": "../../packages/client/modules"
  36. }
  37. ]
  38. }