UNPKG

@softwareventures/maintain-project

Version:

Automatically create and maintain TypeScript projects with standard settings for Software Ventures Limited

6 lines 230 B
import { promises as fs } from "fs"; import { resolve } from "path"; export async function statProjectFile(project, path) { return fs.stat(resolve(project.path, path), { bigint: true }); } //# sourceMappingURL=stat-file.js.map