tsconfig.client.json 765 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "extends": "../../../tsconfig.base.client.json",
  3. "compilerOptions": {
  4. "rootDir": "src",
  5. "outDir": "lib/types",
  6. "tsBuildInfoFile": "lib/tsconfig.client.tsbuildinfo"
  7. },
  8. "files": [
  9. "src/client/index.ts",
  10. "src/client/journal-stream.ts",
  11. "src/client/remote-events.ts",
  12. "src/client/remote-stream.ts",
  13. "src/client/snapshot-stream.ts",
  14. "src/client/stream-client.ts",
  15. "src/remote-error-codes.ts",
  16. "src/stream-protocol.ts"
  17. ],
  18. "references": [
  19. {
  20. "path": "../../../vendor/cordis"
  21. },
  22. {
  23. "path": "../../client/connection/tsconfig.client.json"
  24. },
  25. {
  26. "path": "../../typert/protocol"
  27. },
  28. {
  29. "path": "../../util/deque"
  30. },
  31. {
  32. "path": "../../util/crypto"
  33. }
  34. ]
  35. }