tsconfig.host.json 628 B

123456789101112131415161718192021222324
  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/types.ts",
  11. "src/commands.ts",
  12. "src/directory-picker.ts",
  13. "src/feed.ts"
  14. ],
  15. "references": [
  16. { "path": "../../../vendor/cordis" },
  17. { "path": "../../core/session" },
  18. { "path": "../../host/directory-picker" },
  19. { "path": "../../storage/storage-domain" },
  20. { "path": "../../typert/protocol" },
  21. { "path": "../../util/deque" },
  22. { "path": "../../workspace/workspace" }
  23. ]
  24. }