tsconfig.json 670 B

123456789101112131415
  1. {
  2. // Solution file: the whole-repo graph for `tsc -b tsconfig.json` and the
  3. // tsserver entry. `extends` carries the base paths for get-tsconfig
  4. // consumers — tsx running scripts/ (no nearer tsconfig)
  5. // resolves workspace imports through this file. `files: []` keeps it
  6. // program-less, so the host/client cordis Context merges never meet.
  7. // NEVER add include/files entries, and NEVER flatten this solution into a
  8. // single ts.Program (scripts seed tsconfig.host.json or tsconfig.client.json).
  9. "extends": "./tsconfig.base.json",
  10. "files": [],
  11. "references": [
  12. { "path": "./tsconfig.host.json" },
  13. { "path": "./tsconfig.client.json" }
  14. ]
  15. }