Node.js can run TypeScript This is a fairly quick post, but it's impactful if you use Node.js. Node.js can now just run TypeScript locally, without needing tsx or a build step. How Node v22 has added an experimental flag, --experimental-transform-types. This supercedes a previous strip flag, because it supports code-based TypeScript features like enum. (Maybe there's some features still missing, but it's "good enough" for now.) To run a TypeScript file, you can now: $ node --experimental-tran...