I may be nitpicking here, but Deno isn't a typescript runtime, is it? In the usual case, does it not transpile typescript to JavaScript and run the code from there?
Is Node really a JavaScript runtime? V8 converts the JS to an AST. Would that make Node an `AST runtime`?
Why yes, you can run directly Typescript code in Node (well, at least just as direct as Deno, as it transpiles TS to JS) with the likes of ts-node.
https://www.npmjs.com/package/ts-node
Is Node really a JavaScript runtime? V8 converts the JS to an AST. Would that make Node an `AST runtime`?