tsconfig.json 642 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "extends": "../../../tsconfig.base.client.json",
  3. "compilerOptions": {
  4. "rootDir": "src",
  5. "outDir": "lib/types",
  6. "types": ["node"]
  7. },
  8. "include": [
  9. "src"
  10. ],
  11. "references": [
  12. {
  13. "path": "../../llm/llm"
  14. },
  15. {
  16. "path": "../../core/session"
  17. },
  18. {
  19. "path": "../../util/brand"
  20. },
  21. {
  22. "path": "../../host/apiproxy"
  23. },
  24. {
  25. "path": "../../host/webserver"
  26. },
  27. {
  28. "path": "../../ui/user-approval"
  29. },
  30. {
  31. "path": "../../ui/user-interaction"
  32. },
  33. {
  34. "path": "../../support/invariants"
  35. }
  36. ],
  37. "exclude": [
  38. "**/*.legacy.*"
  39. ]
  40. }