@modern-js/module-tools
Version:
Simple, powerful, high-performance modern npm package development solution.
10 lines (9 loc) • 471 B
TypeScript
import type { ModuleContext } from '../types';
import type { BaseBuildConfig, BuildCommandOptions, ModuleLegacyUserConfig, PartialBaseBuildConfig } from '../types';
export declare const mergeDefaultBaseConfig: (pConfig: PartialBaseBuildConfig, options: {
context: ModuleContext;
buildCmdOptions: BuildCommandOptions;
}) => Promise<BaseBuildConfig>;
export declare const isLegacyUserConfig: (config: {
legacy?: boolean;
}) => config is ModuleLegacyUserConfig;