Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(build): also exclude src/test/** from production tsc check
The test setup file (src/test/setup.ts) imports vitest and
@testing-library/*, so it needs to be excluded alongside test files.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
  • Loading branch information
robinebers and claude committed Feb 3, 2026
commit 51fd422da3c45221dfa2571c1810e24ea4eeffe5
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@
}
},
"include": ["src"],
"exclude": ["src/**/*.test.ts", "src/**/*.test.tsx"],
"exclude": ["src/**/*.test.ts", "src/**/*.test.tsx", "src/test/**"],
"references": [{ "path": "./tsconfig.node.json" }]
}