vibe-coder-mcp
Version:
Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.
24 lines • 886 B
TypeScript
export interface ImportResolverConfig {
enabled: boolean;
cacheSize?: number;
useCache?: boolean;
extensions?: Record<string, string[]>;
expandSecurityBoundary?: boolean;
}
export declare class ImportResolverManager {
private static instance;
private config;
private constructor();
static getInstance(): ImportResolverManager;
initialize(config: ImportResolverConfig): void;
resolveImport(importPath: string, fromFile: string, language: string, projectRoot: string): string;
resolveImport(importPath: string, fromFile: string, language: string, projectRoot: string, includeAbsolutePath: boolean): {
resolvedPath?: string;
absolutePath?: string;
};
clearCache(): void;
getCacheSize(): number;
getConfig(): ImportResolverConfig;
isEnabled(): boolean;
}
//# sourceMappingURL=ImportResolverManager.d.ts.map