From c9bfa33dce65c9340647e805ece7362e3f657862 Mon Sep 17 00:00:00 2001 From: Timur Ercan Date: Wed, 18 Jan 2023 17:02:01 +0100 Subject: [PATCH] next auth custom type --- apps/web/tsconfig.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/web/tsconfig.json b/apps/web/tsconfig.json index 19741ad70..42714d3bc 100644 --- a/apps/web/tsconfig.json +++ b/apps/web/tsconfig.json @@ -17,10 +17,10 @@ }, "include": [ "next-env.d.ts", - "**/*.ts", - "**/*.tsx", "../../packages/types/*.d.ts", - "../../packages/**/*.ts" + "../../packages/types/next-auth.d.ts", + "**/*.ts", + "**/*.tsx" ], - "exclude": ["node_modules", "../../packages/types/next-auth.d.ts"] + "exclude": ["node_modules"] }