tsconfig.host.json 672 B

12345678910111213141516171819202122232425
  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/directory-picker.ts",
  14. "src/feed.ts"
  15. ],
  16. "references": [
  17. { "path": "../../../vendor/cordis" },
  18. { "path": "../../core/session" },
  19. { "path": "../../host/directory-picker" },
  20. { "path": "../../runtime-diagnostics/invariants" },
  21. { "path": "../../storage/storage-domain" },
  22. { "path": "../../typert/protocol" },
  23. { "path": "../../workspace/workspace" }
  24. ]
  25. }