TIL is my collection of short, technical daily learnings. 233 and counting.
Saving TSX's Evaluated Commands to File
We can save all evaluated commands from our TSX REPL session to a file: $ npx tsx > const name: number = "Jake" undefined > .save output.ts Session saved to: output.ts ...