tsconfig.host.json 685 B

1234567891011121314151617181920212223242526272829303132333435
  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/invariant.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": "../../runtime-diagnostics/invariants"
  24. },
  25. {
  26. "path": "../../client/connection/tsconfig.host.json"
  27. },
  28. {
  29. "path": "../../host/webserver"
  30. },
  31. {
  32. "path": "../../typert/protocol"
  33. }
  34. ]
  35. }