tsconfig.host.json 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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/host/bridge/controller.ts",
  10. "src/host/bridge/dispatcher.ts",
  11. "src/host/bridge/lifecycle.ts",
  12. "src/host/bridge/publisher.ts",
  13. "src/host/bridge/rpc.ts",
  14. "src/host/bridge/transport.ts",
  15. "src/host/cdp/console.ts",
  16. "src/host/cdp/debugger.ts",
  17. "src/host/cdp/errors.ts",
  18. "src/host/cdp/heap-profiler.ts",
  19. "src/host/cdp/index.ts",
  20. "src/host/cdp/objects.ts",
  21. "src/host/cdp/profiler.ts",
  22. "src/host/cdp/properties.ts",
  23. "src/host/cdp/runtime.ts",
  24. "src/host/cdp/sources.ts",
  25. "src/host/cdp/stack.ts",
  26. "src/host/index.ts",
  27. "src/host/inspection/cordis.ts",
  28. "src/host/inspection/network.ts",
  29. "src/host/inspection/realm.ts",
  30. "src/host/plugin.ts",
  31. "src/index.ts",
  32. "src/shared/bridge/buffer.ts",
  33. "src/shared/bridge/codec.ts",
  34. "src/shared/bridge/control-codec.ts",
  35. "src/shared/bridge/ids.ts",
  36. "src/shared/bridge/messages/control.ts",
  37. "src/shared/bridge/messages/cordis.ts",
  38. "src/shared/bridge/messages/network.ts",
  39. "src/shared/bridge/messages/observation.ts",
  40. "src/shared/bridge/messages/query/codec.ts",
  41. "src/shared/bridge/messages/query/commands.ts",
  42. "src/shared/bridge/messages/query/frames.ts",
  43. "src/shared/bridge/messages/query/index.ts",
  44. "src/shared/bridge/messages/runtime/command-codec.ts",
  45. "src/shared/bridge/messages/runtime/commands.ts",
  46. "src/shared/bridge/messages/runtime/console-frames.ts",
  47. "src/shared/bridge/messages/runtime/frames.ts",
  48. "src/shared/bridge/messages/runtime/index.ts",
  49. "src/shared/bridge/messages/runtime/value-codec.ts",
  50. "src/shared/bridge/messages/sources/codec.ts",
  51. "src/shared/bridge/messages/sources/commands.ts",
  52. "src/shared/bridge/messages/sources/frames.ts",
  53. "src/shared/bridge/messages/sources/index.ts",
  54. "src/shared/bridge/publisher.ts",
  55. "src/shared/bridge/query-reader.ts",
  56. "src/shared/bridge/rpc.ts",
  57. "src/shared/bridge/validation.ts",
  58. "src/shared/bridge/version.ts",
  59. "src/shared/cdp/capabilities.ts",
  60. "src/shared/cdp/console.ts",
  61. "src/shared/cdp/debugger.ts",
  62. "src/shared/cdp/errors.ts",
  63. "src/shared/cdp/ids.ts",
  64. "src/shared/cdp/index.ts",
  65. "src/shared/cdp/operations.ts",
  66. "src/shared/cdp/property.ts",
  67. "src/shared/cdp/realm.ts",
  68. "src/shared/cdp/remote-object.ts",
  69. "src/shared/cdp/sources.ts",
  70. "src/shared/cordis/collector.ts",
  71. "src/shared/cordis/ids.ts",
  72. "src/shared/cordis/model.ts",
  73. "src/shared/cordis/object-reference.ts",
  74. "src/shared/cordis/object-registry.ts",
  75. "src/shared/cordis/observer.ts",
  76. "src/shared/cordis/publisher.ts",
  77. "src/shared/cordis/projector.ts",
  78. "src/shared/cordis/reader.ts",
  79. "src/shared/cordis/snapshot.ts",
  80. "src/shared/identity.ts",
  81. "src/shared/index.ts",
  82. "src/shared/json.ts",
  83. "src/shared/network/event-source.ts",
  84. "src/shared/network/observation.ts",
  85. "src/shared/service.ts",
  86. "src/shared/validation.ts",
  87. "src/worker/bridge/endpoint.ts",
  88. "src/worker/bridge/hub.ts",
  89. "src/worker/bridge/runtime-rpc.ts",
  90. "src/worker/bridge/session.ts",
  91. "src/worker/bridge/source-rpc.ts",
  92. "src/worker/cdp/domains/debugger/cdp-params.ts",
  93. "src/worker/cdp/domains/debugger/index.ts",
  94. "src/worker/cdp/domains/debugger/projector.ts",
  95. "src/worker/cdp/domains/debugger/script-registry.ts",
  96. "src/worker/cdp/domains/debugger/session.ts",
  97. "src/worker/cdp/domains/dom/index.ts",
  98. "src/worker/cdp/domains/dom/model.ts",
  99. "src/worker/cdp/domains/dom/session.ts",
  100. "src/worker/cdp/domains/native.ts",
  101. "src/worker/cdp/domains/network/session.ts",
  102. "src/worker/cdp/domains/runtime/cdp-params.ts",
  103. "src/worker/cdp/domains/runtime/index.ts",
  104. "src/worker/cdp/domains/runtime/object-table.ts",
  105. "src/worker/cdp/domains/runtime/session.ts",
  106. "src/worker/cdp/ids.ts",
  107. "src/worker/cdp/protocol.ts",
  108. "src/worker/cdp/realm-sessions.ts",
  109. "src/worker/cdp/session.ts",
  110. "src/worker/cdp/target.ts",
  111. "src/worker/entry.ts",
  112. "src/worker/inspection/cordis-query.ts",
  113. "src/worker/inspection/cordis-store.ts",
  114. "src/worker/inspection/network-store.ts",
  115. "src/worker/inspection/query-router.ts",
  116. "src/worker/inspection/realm-store.ts",
  117. "src/worker/inspection/realm.ts",
  118. "src/worker/realms/client/bridge.ts",
  119. "src/worker/realms/client/console.ts",
  120. "src/worker/realms/client/debugger.ts",
  121. "src/worker/realms/client/index.ts",
  122. "src/worker/realms/client/runtime.ts",
  123. "src/worker/realms/client/scripts.ts",
  124. "src/worker/realms/client/sources.ts",
  125. "src/worker/realms/client/values.ts",
  126. "src/worker/realms/host/bridge.ts",
  127. "src/worker/realms/host/console.ts",
  128. "src/worker/realms/host/debugger.ts",
  129. "src/worker/realms/host/index.ts",
  130. "src/worker/realms/host/runtime.ts",
  131. "src/worker/realms/host/scripts.ts",
  132. "src/worker/realms/host/sources.ts",
  133. "src/worker/realms/host/values.ts",
  134. "src/worker/server.ts"
  135. ],
  136. "references": [
  137. {
  138. "path": "../../util/brand"
  139. },
  140. {
  141. "path": "../../../vendor/cordis"
  142. },
  143. {
  144. "path": "../../../vendor/schemastery"
  145. },
  146. {
  147. "path": "../../host/webserver"
  148. },
  149. {
  150. "path": "../../util/crypto"
  151. }
  152. ]
  153. }