timocov / dts-bundle-generator

A tool to generate a single bundle of dts with types tree-shaking
MIT License
762 stars 40 forks source link

Improve validation time performance by re-using caching compiler host from previous steps #307

Open timocov opened 7 months ago

timocov commented 7 months ago

We can reduce validation time as technically we can re-use the same caches during the validation time (when running without --no-check) to avoid processing the same files again and again, probably get drop a few extra hundreds of ms.

Originally posted by @timocov in https://github.com/timocov/dts-bundle-generator/issues/303#issuecomment-1953359984