ezolenko / rollup-plugin-typescript2

Rollup plugin for typescript with compiler errors.
MIT License
819 stars 71 forks source link

disable cache in watch mode #452

Closed ezolenko closed 1 year ago

ezolenko commented 1 year ago

Summary

Fixes #443, should incidentally fix #444

Details

Disabling cache in watch mode, speeds it up considerably, which was the whole point of having a cache in the first place.

This is slightly different from simply using clean: true for watch mode -- clean: true also deletes all old caches. clean: false in watch mode would bypass cache without touching old caches.