@storm-software/build-tools
Version:
A comprehensive set of tools for building and managing projects within a Storm workspace. Includes builders such as rollup, rolldown, tsup, and unbuild, along with various utilities.
14 lines (12 loc) • 366 B
TypeScript
/**
* Get the output extension for the given format and package type.
*
* @param format - The format of the output.
* @param pkgType - The package type.
* @returns The output extensions (for the js and dts output files).
*/
declare function getOutExtension(format?: string, pkgType?: string): {
js: string;
dts: string;
};
export { getOutExtension };