export interface IConfigEntry { entry: string; manifest: string; outputPath: string; } /** * Configuration for a non-AMD external module */ export interface INonAMDExternalModuleConfig { /** * The path or URL to the bundled external non-AMD file */ path: string; /** * The name of the global variable where an non-AMD dependency drops its exports */ globalName: string; /** * The names of the non-AMD dependencies for this project */ globalDependencies?: string[]; } export interface IV1ConfigJson { /** * The entries specified in config.json */ entries?: IConfigEntry[]; /** * The localized resources specified in config.json */ localizedResources?: { [key: string]: string; }; /** * The externals specified in config.json */ externals?: { [name: string]: string | INonAMDExternalModuleConfig; }; } //# sourceMappingURL=config-v1.d.ts.map