Ryan Cavanaugh

Results 457 comments of Ryan Cavanaugh

Happy to disallow this from the TypeScript side

> So the lack of activity here is very intentional. @sebmarkbage Which interpretation do you mean here? 1. We intentionally don't interact with developers on the issue tracker 2. We...

The error message accurately describes what's going on and I think the motivation for that error is pretty straightforward. the only thing you need to do to this code is...

@staxmanade I believe you're an owner on these packages?

What's the current bug this is tracking supposed to be?

Gotcha; this is the expected behavior when `"x"` or `"y"` is a CommonJS module. I'm working on a write-up of this and will just paste the draft since I think...

`"moduleResolution": "bundler"` (possibly plus some extra config flags?) should basically already do what you're asking for

Maybe I'm a bit confused on what your actual runtime environment is. If it's actually Node 16+, then this code legitimately does not work and the `_X as unknown as...

The bulk "Close" action I applied to Design Limitation issues doesn't let you pick what kind of "Close" you're doing, so don't read too much into any issue's particular bit...

Well, new repro I guess ```ts interface NumberType { prop: number} interface StringType { prop: string } interface UnknownType { prop: unknown } interface ResultOne { type: "one"; value: G["prop"];...