tsconfig.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "extends": "../../../tsconfig.base.client.json",
  3. "compilerOptions": {
  4. "rootDir": "src",
  5. "outDir": "lib/types",
  6. "types": ["client-build-environment", "node"]
  7. },
  8. "include": [
  9. "src"
  10. ],
  11. "references": [
  12. {
  13. "path": "../../../vendor/cordis"
  14. },
  15. {
  16. "path": "../../../vendor/loader"
  17. },
  18. {
  19. "path": "../../../vendor/include"
  20. },
  21. {
  22. "path": "../../api/gateway/tsconfig.client.json"
  23. },
  24. {
  25. "path": "../../api/session-controller/tsconfig.client.json"
  26. },
  27. {
  28. "path": "../../api/workspace-controller/tsconfig.client.json"
  29. },
  30. {
  31. "path": "../../attachment/attachment"
  32. },
  33. {
  34. "path": "../../core/session"
  35. },
  36. {
  37. "path": "../../typert/protocol"
  38. },
  39. {
  40. "path": "../../client/connection/tsconfig.client.json"
  41. },
  42. {
  43. "path": "../../client/store"
  44. },
  45. {
  46. "path": "../../client/ui-chat"
  47. },
  48. {
  49. "path": "../../client/ui-conversation"
  50. },
  51. {
  52. "path": "../../client/ui-layout"
  53. },
  54. {
  55. "path": "../../client/ui-slots"
  56. },
  57. {
  58. "path": "../../client/ui-renderer"
  59. },
  60. {
  61. "path": "../../client/ui-session"
  62. },
  63. {
  64. "path": "../../client/ui-settings"
  65. },
  66. {
  67. "path": "../../subagent/subagent"
  68. },
  69. {
  70. "path": "../../api/remotes/tsconfig.client.json"
  71. },
  72. {
  73. "path": "../../client/modules"
  74. },
  75. {
  76. "path": "../../client/web"
  77. },
  78. {
  79. "path": "../remote-mock"
  80. },
  81. {
  82. "path": "../../client/hmr"
  83. }
  84. ]
  85. }