tsconfig.host.json 779 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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/remote-error-codes.ts",
  11. "src/stream-protocol.ts",
  12. "src/stream-server.ts",
  13. "src/types.ts"
  14. ],
  15. "references": [
  16. {
  17. "path": "../../../vendor/cosmokit"
  18. },
  19. {
  20. "path": "../../../vendor/cordis"
  21. },
  22. {
  23. "path": "../../../vendor/schemastery"
  24. },
  25. {
  26. "path": "../../client/connection/tsconfig.host.json"
  27. },
  28. {
  29. "path": "../../host/webserver"
  30. },
  31. {
  32. "path": "../../typert/protocol"
  33. },
  34. {
  35. "path": "../../util/deque"
  36. },
  37. {
  38. "path": "../../util/timeout"
  39. }
  40. ]
  41. }