tsconfig.client.json 728 B

1234567891011121314151617181920212223242526272829303132333435363738
  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/model.ts",
  11. "src/client/shell-preference.ts",
  12. "src/types.ts",
  13. "src/client/close-requests.ts"
  14. ],
  15. "references": [
  16. {
  17. "path": "../../../vendor/cordis"
  18. },
  19. {
  20. "path": "../gateway/tsconfig.client.json"
  21. },
  22. {
  23. "path": "../../client/store"
  24. },
  25. {
  26. "path": "../../core/session"
  27. },
  28. {
  29. "path": "../../util/brand"
  30. },
  31. {
  32. "path": "../../typert/protocol"
  33. },
  34. {
  35. "path": "../../util/crypto"
  36. }
  37. ]
  38. }