@it-corp/vpbank-spotlight
Version:
Command center components for react and VPbank components
11 lines (8 loc) • 296 B
text/typescript
import path from "node:path";
import { execa } from "execa";
import fs from "fs-extra";
export async function generateDts() {
await execa("yarn", ["tsc", "--project", "tsconfig.build.json"]);
// Duplicate the type definitions for ESM
await fs.copy("lib/index.d.ts", "lib/index.d.mts");
}