UNPKG

@notjustcoders/ioc-arise

Version:

Arise type-safe IoC containers from your code. Zero overhead, zero coupling.

21 lines 583 B
export interface IoCConfig { source?: string; output?: string; interface?: string; exclude?: string[]; checkCycles?: boolean; verbose?: boolean; modules?: Record<string, string[]>; } export declare class ConfigManager { private static readonly CONFIG_FILE_NAME; private config; private configPath; constructor(sourceDir: string); private loadConfig; getConfig(): IoCConfig; mergeWithCliOptions(cliOptions: any): IoCConfig; hasConfigFile(): boolean; getConfigPath(): string; } //# sourceMappingURL=configManager.d.ts.map