{
  "compilerOptions": {
    "target": "es2017",
    "lib": ["es2022", "DOM", "DOM.Iterable"],
    "allowJs": true,
    "skipLibCheck": true,
    "strict": true,
    "noEmit": true,
    "esModuleInterop": true,
    "module": "esnext",
    "isolatedModules": true,
    "moduleResolution": "bundler",
    "noUncheckedIndexedAccess": false,
    "verbatimModuleSyntax": true,
    "resolveJsonModule": true,
    "jsx": "preserve",
    "incremental": true,
    "plugins": [
      {
        "name": "next"
      },
      {
        "name": "gql.tada/ts-plugin",
        "trackFieldUsage": false,
        "shouldCheckForColocatedFragments": false,
        "schemas": [
          {
            "name": "hasura",
            "schema": "hasura-schema.graphql",
            "tadaOutputLocation": "hasura-env.d.ts",
            "tadaTurboLocation": "hasura-cache.d.ts"
          },
          {
            "name": "thegraph-starterkits",
            "schema": "the-graph-schema-starterkits.graphql",
            "tadaOutputLocation": "the-graph-env-starterkits.d.ts",
            "tadaTurboLocation": "the-graph-cache-starterkits.d.ts"
          },
          {
            "name": "portal",
            "schema": "portal-schema.graphql",
            "tadaOutputLocation": "portal-env.d.ts",
            "tadaTurboLocation": "portal-cache.d.ts"
          },
          {
            "name": "blockscout",
            "schema": "blockscout-schema.graphql",
            "tadaOutputLocation": "blockscout-env.d.ts",
            "tadaTurboLocation": "blockscout-cache.d.ts"
          }
        ]
      }
    ],
    "paths": {
      "@/*": ["./src/*"],
      "@schemas/*": ["./*.d.ts"]
    },
    "noImplicitAny": true,
    "noImplicitThis": true,
    "strictNullChecks": true,
    "strictFunctionTypes": true,
    "strictBindCallApply": true,
    "strictPropertyInitialization": true,
    "strictBuiltinIteratorReturn": true,
    "alwaysStrict": true,
    "useUnknownInCatchVariables": true,
    "resolvePackageJsonExports": true,
    "resolvePackageJsonImports": true,
    "allowSyntheticDefaultImports": true,
    "preserveConstEnums": true
  },
  "include": ["**/*.ts", "**/*.tsx", "next-env.d.ts", ".next/types/**/*.ts"],
  "exclude": ["node_modules"]
}
