Hacker News new | ask | show | jobs
by flohofwoe 1 hour ago
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.
1 comments

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