fix: remove unreachable return after process.exit in post-edit-typecheck hook

This commit is contained in:
Affaan Mustafa
2026-02-13 04:15:13 -08:00
parent c93c218cb8
commit e2040b46b3

View File

@@ -33,7 +33,6 @@ process.stdin.on("end", () => {
if (!fs.existsSync(resolvedPath)) {
process.stdout.write(data);
process.exit(0);
return;
}
// Find nearest tsconfig.json by walking up (max 20 levels to prevent infinite loop)
let dir = path.dirname(resolvedPath);