From a674b990090d45a6b17e07366d2a739c9d8ab029 Mon Sep 17 00:00:00 2001 From: Benjamin Lu Date: Mon, 4 Aug 2025 03:31:50 -0400 Subject: [PATCH] [config] Exclude litegraph test files from TypeScript compilation --- tsconfig.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index a44da08914..43fca87248 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -38,5 +38,8 @@ "tests-ui/**/*", "global.d.ts", "vite.config.mts" + ], + "exclude": [ + "src/lib/litegraph/test/**/*" ] }