Tsx Strict - Type Safe TSX Runner With Type Checking
by•
Type-safe TSX runner with automatic Type-checking. Latest version: 0.1.2, last published: a day ago. Start using tsx-strict in your project by running `npm i tsx-strict`. There are no other projects in the npm registry using tsx-strict.
Replies
Best
Maker
📌
TSX-Strict - type-safe TSX runner with automatic type-checking
I was stuck between two bad options when running TypeScript:
• ts-node-dev gave me type safety, but it was slow.
• tsx was blazing fast, but it didn’t provide real-time type checking.
To fix this, I built tsx-strict. It combines the speed of tsx with the safety of tsc --noEmit --watch, all in a single command. No more juggling two terminals, no more wasted cycles.
In practice, this improved my workflow 2x and cut TypeScript + type checking overhead by 50% compared to ts-node-dev.
Check the docs here: www.github.com/uanela/tsx-strict
Replies