From 360469de408b1159d50a8ba3930d9fdc944c52a0 Mon Sep 17 00:00:00 2001 From: Fabian Schneider Date: Fri, 30 Jul 2021 19:05:47 +0200 Subject: [PATCH] :memo: Update example URL in documentation --- README.md | 2 +- tsconfig.json | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 8c5d3cd..567d256 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Schema locations can be: ```js import { getDiff } from 'graphql-schema-diff'; -const currentSchemaLocation = 'https://swapi.graph.cool/'; +const currentSchemaLocation = 'https://swapi-graphql.netlify.app/.netlify/functions/index'; const newSchemaLocation = './schema.graphql'; getDiff(currentSchemaLocation, newSchemaLocation) diff --git a/tsconfig.json b/tsconfig.json index 1a96563..4bc10e0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,6 @@ "outDir": "./dist", "moduleResolution": "node", "strict": true, - "typeRoots": ["./node_modules/@types", "./@types"], "esModuleInterop": true, "resolveJsonModule": true, "declaration": true,