TypeScript performance in large monorepos – practical tuning tips?
We have a large PNPM monorepo with many TS projects. tsc --build and IDE responsiveness (tsserver) degrade as the repo grows.
What tuning steps actually help in practice?
- Project References setup and
compositeusage - Avoiding path alias pitfalls
skipLibCheck,incrementaltrade-offs- Splitting type-heavy packages
- Using
--isolatedModulesacross workspaces
Any real-world configs to share?
0