Skip to content

Commit 56eec7c

Browse files
AgentEnderclaude
andcommitted
fix(e2e): use --build mode for tsc --force flag
The --force flag only works with tsc --build mode, not with -p/--project. Changed from `tsc -p tsconfig.lib.json --noEmit --force` to `tsc --build tsconfig.lib.json --force`. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent d8b7046 commit 56eec7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

e2e/run-examples.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ for (const example of examples) {
5252
try {
5353
process.stdout.write('▶️ Checking TypeScript types for all examples');
5454
const a = performance.now();
55-
execSync(`tsc -p tsconfig.lib.json --noEmit --force`, { cwd: examplesRoot });
55+
execSync(`tsc --build tsconfig.lib.json --force`, { cwd: examplesRoot });
5656
const b = performance.now();
5757
process.stdout.write('\r');
5858
console.log(

0 commit comments

Comments
 (0)