UNPKG

graphql-component

Version:

Build, customize and compose GraphQL schemas in a componentized fashion

16 lines (14 loc) 402 B
import globals from "globals"; import tseslint from "typescript-eslint"; /** @type {import('eslint').Linter.Config[]} */ export default [ {files: ["**/*.{js,mjs,cjs,ts}"]}, {files: ["**/*.js"], languageOptions: {sourceType: "script"}}, {languageOptions: { globals: globals.node }}, ...tseslint.configs.recommended, { rules: { "@typescript-eslint/no-explicit-any": "off" } } ];