From 941a07fcbdeecee9d16572e3267104ec896e9ec9 Mon Sep 17 00:00:00 2001 From: Jiachi Liu Date: Sat, 11 Jan 2025 16:34:11 +0100 Subject: [PATCH] fix tsconfig checking --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index faf212ad..1641b4e5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,5 +17,6 @@ "forceConsistentCasingInFileNames": true }, "references": [{ "path": "./test/tsconfig.json" }], - "include": ["src", "*.d.ts"] + "include": ["src", "*.d.ts", "**/*.json"], + "exclude": ["**/*.test.ts", "**/*.test.tsx"] }