@strapi/pack-up
Version:
Simple tools for creating interoperable CJS & ESM packages.
15 lines (14 loc) • 368 B
TypeScript
import type { Extensions } from '../../core/exports';
import type { Targets } from '../../createBuildContext';
interface ViteTaskEntry {
path: string;
entry: string;
}
interface ViteBaseTask {
type: string;
entries: ViteTaskEntry[];
format: Extensions;
output: string;
runtime: keyof Targets;
}
export type { ViteBaseTask, ViteTaskEntry };