tsconfig.client.json 597 B

1234567891011121314151617181920212223
  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/contract.ts",
  10. "src/client/index.ts",
  11. "src/client/runtime.ts",
  12. "src/protocol.ts",
  13. "src/types.ts"
  14. ],
  15. "references": [
  16. { "path": "../../../vendor/cordis" },
  17. { "path": "../../util/brand" },
  18. { "path": "../../util/crypto" },
  19. { "path": "../../attachment/attachment" },
  20. { "path": "../../core/session" },
  21. { "path": "../../typert/protocol" }
  22. ]
  23. }