| > But I have zero clue what those other tools are. The incorporated tools are actually really amazing: - vitest, an ultra fast test runner. After using a lot of others, including jest and node's built in one, I love vitest. - oxlint, replaces eslint but is compatible with its file format and ultra fast, since it isn't written JavaScript. I tried biome, but I found oxlint to have more rules and the eslint compatibility was nice. - oxfmt, replaces prettier and is faster since it isn't written in JavaScript. - rolldown, replaces rollup and is compatible with it but it is much faster since it isn't written in JavaScript. The above are my go-tos in new projects anyhow since they are killer good and fast. |