Lyu, Wei-Da

Results 270 comments of Lyu, Wei-Da

Typescript's tsserver has a concept called inferred project. It seems like if according to the `include` and `exclude` the file doesn't belong to any config file, It would fall into...

Yes. https://github.com/microsoft/TypeScript/issues/56749 It was assigned to a team member so I didn't create a PR to fix it. But it has been over half a year now I'll probably create...

There are other configs for these preferences. `javascript.preferences.quoteStyle` and `typescript.preferences.quoteStyle` for quote style. And prettier configs control indent size, tab preference, and semicolons. You can use `prettier.useTabs`, `prettier.tabWidth` and `prettier.semi`...

> or the [corresponding config](https://prettier.io/docs/en/options.html) in a [prettier config file](https://prettier.io/docs/en/configuration.html). Maybe my message isn't that clear. You can also use a `.prettierrc` config file if you don't have the prettier...

This is tricky. We transform the comment into a JSDoc comment, which can only be a multi-line comment. One solution is to add invisible characters like `u+200b` to escape it....

This is expected behaviour, unfortunately. And there is a workaround in the [doc](https://github.com/sveltejs/language-tools/blob/master/docs/preprocessors/scss-less.md#scss-cant-find-stylesheet-when-using-prependdata). The extension process and the language server process both started where you opened the editor. Theoretically, we...

`svelte-autoimport.filesToScan` isn't config for svelte for vscode so I don't know. `svelte.plugin.css.globals`, yes. It would apply to all the files in the workspace. Although it just simply doesn't account for...

You can see https://github.com/sveltejs/language-tools/issues/1880 for the solution for vitePreprocess.

This has only been implemented in Chrome and Firefox very recently. See the issue on the VSCode repo https://github.com/microsoft/vscode/issues/181560. We use the same underlying library that is maintained by the...

@henrikvilhelmberglund I create a new issue to track it #2065