Loïc Mangeonjean
Loïc Mangeonjean
> I didn't find a package @codingame/monaco-vscode-graphql-default-extension to install, whereas I found the ones for powershell, shellscript, go, etc. Maybe I'm missing something but the monaco-editor had one. Graphql is...
> > Graphql is not a VSCode default-extension, but you can use the [vsix-plugin](https://github.com/CodinGame/monaco-vscode-api?tab=readme-ov-file#loading-vsix-file) to load the vsix of the vscode-graphql extension (or by the extension gallery view) > >...
What you are trying to do is plugging multiple clients on the same language server connection, which is not supported out of the box. You may need something like https://github.com/CodinGame/languageserver-mutualized...
As stated in the readme, the webpack plugin can't be used anymore
There is even no `vs/nls` file in the editor api, why are you trying to access it directly? Exposed modules are whitelisted, and `vs/platform/actions/common/actions` is currently not part of it,...
I'm not sure why you would want to call setLocale by hands? You should be able to import `vscode/vscode/XXX` instead of `monaco-editor/esm/XXX` though
We are using our own localization mechanism here, inspired by what is used in VSCode, adpated to work in ESM (VScode is built into commonjs/umd and they inject the localization...
Why don't you use what @kaisalmen suggested?
Just realized the build behavior is different than the dev behavior: in build mode, asset loaded with the `new URL(...)` syntax never get transformed, so a third solution can be...
> Hi @CGNonofr, thanks for the report. > > What value are you providing to the `main` field? It should be a string, it's types as such: https://github.com/mui/material-ui/blob/next/packages/mui-material/src/styles/createPalette.d.ts#L44 `PaletteColorOptions` is...