Mateusz Burzyński

Results 1531 comments of Mateusz Burzyński

The thread I linked to specifically calls out extensionless module specifiers as erroring. If they are not then perhaps that is a bug - it might be good to wait...

Yes, we'll have some tests for this there!

I agree. I think that *maybe* a patch closer to [this one](https://github.com/microsoft/TypeScript/pull/59772#discussion_r1735378361) could improve some scenarios but I'm also not sure. It's hard for me to know which tradeoffs should...

This is a type merely with an alias symbol. It gets normalized to the contained type by `getNormalizedType` using `createTypeReference` almost at the beginning of `isRelatedTo`. It gets normalized to...

It can be simplified further to: ```ts (await WebAssembly.instantiateStreaming(fetch(""))); export class BitSet {} ``` This is a weird bug - or how I call it: a fun issue 😉

It's an issue with `reparseTopLevelAwait` (or the data that it operates on)

Thanks for the repro! I'll investigate this one soon. Based on my quick check this one is not related to https://github.com/microsoft/TypeScript/pull/57909

Eh, for some reason I was looking at the other playground - the one that doesn't reproduce the issue. I agree with @RyanCavanaugh that this is more correct (although number...

The difference between those 2 cases is quite surprising here - especially given how this was accidentally affected by the change in inferred type selection. It boils down to how...