From bc33d555922fd527c4e31d46e274878fe23d6810 Mon Sep 17 00:00:00 2001 From: Nur Fikri Date: Mon, 13 May 2024 12:08:43 -0400 Subject: [PATCH] ignore registry directories --- tsconfig.json | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 24f970dc..3f627ee7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -23,13 +23,6 @@ "strict": true, "target": "es2020" }, - "exclude": ["node_modules"], - "include": [ - "next-env.d.ts", - ".next/types/**/*.ts", - "env.d.ts", - "window.d.ts", - "**/*.ts", - "**/*.tsx" - ] + "exclude": ["node_modules", "chain-registry", "initia-registry"], + "include": ["next-env.d.ts", ".next/types/**/*.ts", "env.d.ts", "window.d.ts", "**/*.ts", "**/*.tsx"] }