From ea9627c6f670981005a4b362b9062bb43b13103e Mon Sep 17 00:00:00 2001 From: Chika Date: Fri, 8 Jul 2022 20:47:05 +0300 Subject: [PATCH] typescript: ignore **/__generated__ --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 3e0a45e..9b76141 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,5 +19,5 @@ }, "files": ["types/graphql.d.ts"], "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"], - "exclude": ["node_modules"] + "exclude": ["node_modules", "**/__generated__"] }