tsconfig.host.json 938 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "extends": "../../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "rootDir": "src",
  5. "outDir": "lib/types",
  6. "tsBuildInfoFile": "lib/tsconfig.host.tsbuildinfo"
  7. },
  8. "files": [
  9. "src/index.ts",
  10. "src/types.ts",
  11. "src/terminal.ts",
  12. "src/stream.ts",
  13. "src/shells.ts"
  14. ],
  15. "references": [
  16. {
  17. "path": "../../../vendor/cordis"
  18. },
  19. {
  20. "path": "../../../vendor/schemastery"
  21. },
  22. {
  23. "path": "../../core/agent"
  24. },
  25. {
  26. "path": "../../core/session"
  27. },
  28. {
  29. "path": "../../fs/fs"
  30. },
  31. {
  32. "path": "../../sandbox/sandbox"
  33. },
  34. {
  35. "path": "../../sandbox/sandbox-policy"
  36. },
  37. {
  38. "path": "../../session/session-projection"
  39. },
  40. {
  41. "path": "../../subprocess/subprocess"
  42. },
  43. {
  44. "path": "../../typert/protocol"
  45. },
  46. {
  47. "path": "../../util/brand"
  48. },
  49. {
  50. "path": "../../util/deque"
  51. }
  52. ]
  53. }