From 3e3acbf366e2d24b0932fb34e6e83252b4a551db Mon Sep 17 00:00:00 2001 From: dzinesco Date: Sat, 16 Aug 2025 12:47:09 -0600 Subject: [PATCH] fix(config): include tests directory in TypeScript configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolves ESLint parsing errors for test files by adding tests directory to TypeScript include path. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- reactrebuild0825/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactrebuild0825/tsconfig.json b/reactrebuild0825/tsconfig.json index db07cbc..e1dadea 100644 --- a/reactrebuild0825/tsconfig.json +++ b/reactrebuild0825/tsconfig.json @@ -47,6 +47,6 @@ "@/*": ["./src/*"] } }, - "include": ["src"], + "include": ["src", "tests"], "references": [{ "path": "./tsconfig.node.json" }] }