From d7e6c9c1f5a4ae3f65bc0e0a0c6832fcc50945f1 Mon Sep 17 00:00:00 2001 From: Jed Fox <git@jedfox.com> Date: Wed, 18 Jan 2023 22:01:54 -0500 Subject: [PATCH] Fix TypeScript warning about too many files (#486) --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 3e88e7d0b..00436038a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,5 +16,5 @@ "moduleResolution": "Node", "module": "ESNext" }, - "exclude": ["node_modules", "build"] + "exclude": ["**/node_modules/*", "**/build/*", "**/lib-dist/*"] } -- GitLab