From 41d06015b48d7b0c3debc0e1bb78cd71249b8e58 Mon Sep 17 00:00:00 2001 From: Chika Date: Sat, 14 May 2022 15:17:39 +0300 Subject: [PATCH] types: move graphql type to /types --- tsconfig.json | 2 +- {@types => types}/graphql.d.ts | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {@types => types}/graphql.d.ts (100%) diff --git a/tsconfig.json b/tsconfig.json index 8227501..5d2f064 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,7 +17,7 @@ "incremental": true, "typeRoots": ["node_modules/@types", "@types"] }, - "files": ["@types/graphql.d.ts"], + "files": ["types/graphql.d.ts"], "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], "exclude": ["node_modules"] } diff --git a/@types/graphql.d.ts b/types/graphql.d.ts similarity index 100% rename from @types/graphql.d.ts rename to types/graphql.d.ts