Hacker News new | ask | show | jobs
by Aeolun 1710 days ago
What I need is a similar speedup for my Typescript and eslint checks. Bundling isn’t my main issue.
2 comments

> Bundling isn’t my main issue.

This.

Bundling, and even barreling, have pretty much been solved problems for a while. Right now I feel that unit test frameworks, linters, and type checkers are by far the main bottlenecks in the development workflow.

Yeah, Jest is the slowest thing in my build pipeline.
For ESLint:

https://eslint.org/docs/user-guide/command-line-interface#ca...

For TS, tsc has an —incremental flag. ts-fork-checker-plugin is non-blocking for the rest of the build too.