(dir: string)
| 25 | // ─── Helpers ────────────────────────────────────────────── |
| 26 | |
| 27 | function ensureDir(dir: string): void { |
| 28 | if (!existsSync(dir)) { |
| 29 | mkdirSync(dir, { recursive: true }); |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | function readJsonc(path: string): Record<string, unknown> | null { |
| 34 | const content = readFileSync(path, "utf-8"); |
no outgoing calls
no test coverage detected