tsconfig.client.json 686 B

12345678910111213141516171819202122232425262728293031
  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/stream-protocol.ts"
  16. ],
  17. "references": [
  18. {
  19. "path": "../../../vendor/cordis"
  20. },
  21. {
  22. "path": "../../client/connection/tsconfig.client.json"
  23. },
  24. {
  25. "path": "../../typert/protocol"
  26. },
  27. {
  28. "path": "../../util/crypto"
  29. }
  30. ]
  31. }