@pakk/core
Version:
The core library of pakk, that can manage your package.json for library development.
17 lines • 884 B
TypeScript
import { Defined } from '@alexaegis/common';
import { AutoExportAndExportStaticCommonOptions } from '../export/auto-export.class.options.js';
export interface AutoExportStaticOptions extends AutoExportAndExportStaticCommonOptions {
/**
* ### AutoExportStatic
*
* Relative to cwd, a folder whats content will be simply copied to
* `outDir` and made available using simple, additional export statements.
* Make sure their names don't overlap with other exports!
*
* @defaultValue ["readme.md", "static/\*\*", "export/**"]
*/
staticExports?: string[] | undefined;
}
export type NormalizedAutoExportStaticOptions = Defined<AutoExportStaticOptions>;
export declare const normalizeAutoExportStaticOptions: (options?: AutoExportStaticOptions) => NormalizedAutoExportStaticOptions;
//# sourceMappingURL=auto-export-static.class.options.d.ts.map