print(fileTimes: Map<string, number>,projectRoot: string): void
--debug listing of this run's per-file wall times, slowest first.
import * as Timings from './timings.ts'; Timings.print(new Map(), '/proj'); // empty run — prints nothing // A non-empty map writes lines like `# 1240ms test/cart-test.ts` to stdout.