Hey,
I wrote VS Code extension to support language server. I can confirm it’s working if I run it in Hosted Plugin Instance.
I have no idea though how to include it in base Theia instance (one started with yarn start
).
I’ve tried adding it into dependencies, but no luck. Plugins is in node_modules, but does not seem to be loaded.
How can I enforce load of that plugin alongside with other VS Code plugins located in plugins folder.
Preferable I don’t want to package plugin. I want it in a form of package with package.json and code in .ts file.
Maybe I should write Theia Extension somehow loading that plugin?