Gökhan Kurt
Gökhan Kurt
For now, I am using `setupServer` from `msw/native` to get around this issue. It works well for my use case. It works because `msw/native` patches the global `fetch` and doesn't...
@MartinJohns Thanks but I am trying to understand why. Consider this example: ``` interface Type5 { type: boolean } interface Type6 { type: string } declare const obj3: Type5 |...
Sorry, this is outdated after the changes in 1.4. I will try to update this. I believe the problem in Elysia might be fixed already, but Eden still doesn't handle...
@SaltyAom not sure if I understand well. The example you show produces a type like this: ``` query: { name?: string | undefined; } ``` With `Undefinable`, it produces a...
@ematipico it's not the same issue with multiple entries. Please read the description carefully.
Yeah the multiple instances is still an issue but I don't observe it too much since upgrading to v2+. I am quite sure this is a separate issue. Maybe the...
Ok. Maybe I have a global VSCode setting which enables format on save. I will check with a fresh profile.
I checked with a fresh VSCode profile with no global settings and can still reproduce the issue. Just in case, I updated some settings in the repro to enable all...
Couldn't find an easy solution in the extension source code. This seems like an issue in the LSP. Will check more in the upcoming days.
@ematipico Yes but unless I am missing something, that will leave the lint issues in the code, right? What if I want to also fix the lint issues automatically on...