Mirror: TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.

remove export

Changed files
+1 -1
src
+1 -1
src/index.ts
···
return proxy;
}
-
export const init: ts.server.PluginModuleFactory = () => {
+
const init: ts.server.PluginModuleFactory = () => {
return { create };
};