Open
Description
It would be really nice to test the performance of type checking, similar to jest's testTimeout
(which I'm fairly confident only sets a timeout for the runtime of the test, not the compile time. I want to be able to confidently claim that it's fast in your IDE, but I don't know how to test that.
I know about typescript's performance tracing wiki but it would be nice to have an automated way to determine the speed of the typing portion, preferably of my tests.
Essentially, I'd like to eliminate the desire for something like ts-simplify
and try to hone in performance issues (and eliminate performance regressions).