Hacker News new | ask | show | jobs
by JuanPosadas 995 days ago
> enums flawed

I like Typescript enums generally, my only complaint is that they are kept in the final build as big objects, especially in the scenario where you don't enumerate them. I use a replace function with terser to replace them with inlined constants to make my fine build smaller.

1 comments

That's what `const enum` is for!