interface BundleConfigBase {
/**
* The base directory to bundle from.
*
* @default location of the overlayed.config.ts file
*/
baseDir?: string;
/**
* String or array of string glob patterns to bundle.
*
* `package.json` is always included.
*/
include: MaybeArray<string>;
/**
* String or array of string glob patterns to exclude from the bundle.
*
* `/installer` is always excluded.
*/
exclude?: string | string[];
}
interface BundleAppConfig extends BundleConfigBase {}
interface BundleSiteConfig extends BundleConfigBase {}