From 6319a25d0f0f04ac2e06efba12cb0daa59c7eff8 Mon Sep 17 00:00:00 2001 From: Chika Date: Sat, 17 Sep 2022 15:50:24 +0300 Subject: [PATCH] typescript: move graphql.d.ts to @types/ --- {types => @types}/graphql.d.ts | 0 tsconfig.json | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename {types => @types}/graphql.d.ts (100%) 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 diff --git a/tsconfig.json b/tsconfig.json index 3e0a45e..ae007a2 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", "**/*.js", "**/*.jsx"], "exclude": ["node_modules"] }