chore: initialize from frontend template 4dc033c

This commit is contained in:
DongHyeonka
2026-08-13 18:23:26 +09:00
commit 40107eec84
897 changed files with 234824 additions and 0 deletions
@@ -0,0 +1,12 @@
import { checkV8CoverageCounterSemantics } from "./lib/v8-coverage-counter-semantics.ts";
try {
const result = await checkV8CoverageCounterSemantics();
process.stdout.write(
`V8 coverage counter semantics: PASS (${result.counterBearingModules.length} counter-bearing, ${result.counterlessModules.length} counterless)\n`,
);
} catch (error) {
const message = error instanceof Error ? error.message : String(error);
process.stderr.write(`V8 coverage counter semantics failed: ${message}\n`);
process.exitCode = 1;
}