Skip to content

Commit 49f2c98

Browse files
zhawtofclaude
andcommitted
fix: exclude smoke-*.ts from typecheck (they import from dist/)
scripts/smoke-deno.ts and scripts/smoke-worker.ts validate the *built* artifacts, so they import from ../dist/*.js. The Typecheck CI job runs without first building, which made tsc fail to resolve those imports. Their own CI jobs (Smoke Deno, Smoke Workers) run after a build, so the exclusion doesn't reduce coverage — it just stops Typecheck from needing a build step that's irrelevant to it. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 64964a2 commit 49f2c98

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tsconfig.test.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
"types": ["vitest/globals", "node"]
1010
},
1111
"include": ["src/**/*.ts", "test/**/*.ts", "bench/**/*.ts", "scripts/**/*.ts"],
12-
"exclude": ["node_modules", "dist"]
12+
"exclude": ["node_modules", "dist", "scripts/smoke-deno.ts", "scripts/smoke-worker.ts"]
1313
}

0 commit comments

Comments
 (0)