fix(config): include tests directory in TypeScript configuration

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 <noreply@anthropic.com>
This commit is contained in:
2025-08-16 12:47:09 -06:00
parent f777ef760b
commit 3e3acbf366

View File

@@ -47,6 +47,6 @@
"@/*": ["./src/*"] "@/*": ["./src/*"]
} }
}, },
"include": ["src"], "include": ["src", "tests"],
"references": [{ "path": "./tsconfig.node.json" }] "references": [{ "path": "./tsconfig.node.json" }]
} }