logoalt Hacker News

flohofwoetoday at 7:29 AM1 replyview on HN

Deno also just strips the type annotations when running TS code - at least by default. To get type checking you'll need to run via `deno run --check`, or use the separate `deno check` subcommand. No big deal since type checking and linting usually happens automatically in the IDE during development.


Replies

bel8today at 8:30 AM

Good to know. Does it also preclude features like enums?

show 2 replies