chore: cleanup

This commit is contained in:
Nathan Walker
2025-07-22 22:46:15 -07:00
parent b853447da2
commit b79801af5f
12 changed files with 3 additions and 38 deletions

View File

@ -20,7 +20,6 @@ export class ModuleNameResolver implements ModuleNameResolverType {
let result: string = this._cache[key];
if (result === undefined) {
result = this.resolveModuleNameImpl(path, ext);
console.log('resolveModuleName result:', result);
this._cache[key] = result;
}

View File

@ -176,8 +176,6 @@ export function findMatch(path: string, ext: string, candidates: Array<string>,
result = candidates[i];
}
}
console.log(' > findMatch called with path:', path, 'and ext:', ext, 'candidates:', candidates, 'context:', context, '--- MATCH? result:', result);
console.log('. ');
return result;
}