UNPKG

homebridge-hilo

Version:

Plugin Homebridge (non officiel) pour la passerelle et les appareils Hilo de Hydro-Québec | Unofficial Homebridge plugin for Hydro-Québec Hilo bridge and devices

24 lines (21 loc) 455 B
import type { CodegenConfig } from "@graphql-codegen/cli"; const config: CodegenConfig = { schema: "schema.json", documents: ["src/**/*.ts"], ignoreNoDocuments: true, generates: { "./src/graphql/": { preset: "client", config: { documentMode: "string", }, }, "./schema.graphql": { plugins: ["schema-ast"], config: { includeDirectives: true, }, }, }, }; export default config;