diff --git a/src/lib.ts b/src/lib.ts index 86193eba..fbc20d22 100644 --- a/src/lib.ts +++ b/src/lib.ts @@ -32,6 +32,10 @@ import { sortSchemaAst } from "./transforms/sortSchemaAst"; import { validateSemanticNullability } from "./validations/validateSemanticNullability"; import { resolveTypes } from "./transforms/resolveTypes"; +// Export the TypeScript plugin implementation used by +// grats-ts-plugin +export { initTsPlugin } from "./tsPlugin/initTsPlugin"; + export type SchemaAndDoc = { schema: GraphQLSchema; doc: DocumentNode;