-
Hi @kaisalmen, We are using Monaco Editor Wrapper and Langium language server. From the Monaco Editor wrapper, we start the Langium language server by web worker. Now we want to add an in-memory file system as shown in builtin-libraries, in the last part, an DslLibraryFileSystemProvider was implemented in client side (vs code extension). In Monaco Editor Wrapper, how to implement the similar DslLibraryFileSystemProvider? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @ZCH2005 you should be able to do very similarly. The other possibility is to do it like this and use the readily available |
Beta Was this translation helpful? Give feedback.
Hi @ZCH2005 you should be able to do very similarly.
@codingame/monaco-vscode-files-service-override
is always configured and you can use the registerCustomProvider to register you own file system provider.The other possibility is to do it like this and use the readily available
RegisteredFileSystemProvider
.