Lyu, Wei-Da

Results 257 comments of Lyu, Wei-Da

This seems to be because of the `index.ts` right next to the `index.d.ts`. If I hover over the `ElectrornAPI` in the import, it shows the info of `contextBridge`, which only...

The problem isn't config not detected but because we limit the pattern to the workspace root. ex: `shared/src/components` => `c:/path/to/repo/packages/app/**/shared/src/components`. This was done because the original implementation in the VSCode...

Can you provide an example of the nested if block issue? The problem with div is because of how vscode-html-languageservice parses the file but that shouldn't affect if-block folding.

Now we have a command to migrate components into rune mode maybe we can also make this component mode codelens a button for migrating. Kind of like the one in...

Leaving here as a record. I thought it would be easier to just transform it into a function declaration but snippets are actually block-scoped so the following won't be flagged...

`AsyncIteratable` is only part of the `BodyInit` union in `undici`'s implementation instead of the dom standard. It might not be available if you're not using adapter-node. And the type error...

> TypeScript prompts me with '"ReadableStream" only refers to a type, but is being used as a value here. ts(2693)' Can't tell for sure without a reproduction but I guess...

Marking this as a feature request because we didn't actually have workspace symbol support. What you see is provided by the TypeScript extension. Most of the current TypeScript features for...

The loop is because you create a symlink within the directory itself. Is there any reason why you need this? Or is this an overly simplified reproduction?

Build output does make a lot more sense. Other tools probably only load the top config, or start searching from the svelte file and walk the directory tree upward. We...