vibe-coder-mcp
Version:
Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.
17 lines • 611 B
TypeScript
export interface ImportResolverOptions {
projectRoot: string;
fromFile: string;
language: string;
useCache?: boolean;
extensions?: string[];
expandSecurityBoundary?: boolean;
includeAbsolutePath?: boolean;
}
export interface ResolvedImportResult {
relativePath?: string;
absolutePath?: string;
}
export declare function resolveImport(importPath: string, options: ImportResolverOptions): ResolvedImportResult | string;
export declare function clearImportCache(): void;
export declare function getImportCacheSize(): number;
//# sourceMappingURL=importResolver.no-cache.d.ts.map