Same boat here! The "ts type check out of memory" error is driving me nuts. 😤
Have you tried using `tsc --diagnostics`? It gives you a breakdown of where the memory is being used, which can help pinpoint the issue.
Also, maybe try using `esbuild` or `swc` for the build step—they’re way faster and use less memory than TS.
Have you tried using `tsc --diagnostics`? It gives you a breakdown of where the memory is being used, which can help pinpoint the issue.
Also, maybe try using `esbuild` or `swc` for the build step—they’re way faster and use less memory than TS.
