Kirk Waiblinger

Results 103 comments of Kirk Waiblinger

Note also that re-allowing ```ts const three = 3 as 3; // or, maybe selectively allowing this version const four = 4 as const; ``` would basically amount to relitigating...

What's the actual resolution here for which we're accepting PRs? @JoshuaKGoldberg Seems like for type assertions which only affect the freshness of types, which presumably is just `const x =...

Is that correct, though? In my project I'm seeing enums come across the language barrier as objects with shape `{ value: number, constructor: Function }` ``` enum("OldStyle") .value("ONE", OLD_STYLE_ONE); ```...