tsconfig.host.json 594 B

1234567891011121314151617181920212223
  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/index.ts",
  10. "src/invariant.ts",
  11. "src/types.ts",
  12. "src/commands.ts",
  13. "src/feed.ts"
  14. ],
  15. "references": [
  16. { "path": "../../../vendor/cordis" },
  17. { "path": "../../core/session" },
  18. { "path": "../../runtime-diagnostics/invariants" },
  19. { "path": "../../storage/storage-domain" },
  20. { "path": "../../typert/protocol" },
  21. { "path": "../../workspace/workspace" }
  22. ]
  23. }