You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During ts-loader's after-plugin callback, the error checks take a ton of time per incremental build. In the code base I'm currently working with, error checks suck up over 6 seconds of incremental build time.
All typescript files by default are currently checked for errors. I'm proposing that we add a regex to exclude files solely for error checks for incremental build time optimization.
My current build time went from 8s to 2s on average through a prototype of this change.
The text was updated successfully, but these errors were encountered:
During
ts-loader
'safter-plugin
callback, the error checks take a ton of time per incremental build. In the code base I'm currently working with, error checks suck up over 6 seconds of incremental build time.All typescript files by default are currently checked for errors. I'm proposing that we add a regex to exclude files solely for error checks for incremental build time optimization.
My current build time went from 8s to 2s on average through a prototype of this change.
The text was updated successfully, but these errors were encountered: