fix: exclude test files from TypeScript build

Updated tsconfig.json to exclude test files and setup files from the
production build. This resolves TypeScript compilation errors when
building the package, as test files with vitest globals don't need
to be included in the distributed package.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock
2025-09-18 19:39:32 -05:00
parent 2b5f14310c
commit 0e097daf8f

View File

@@ -24,6 +24,8 @@
"exclude": [
"node_modules",
"dist",
"**/*.stories.*"
"**/*.stories.*",
"**/*.test.*",
"src/test/**/*"
]
}