import { writeSync } from 'node:fs'; export async function resolve(specifier, context, next) { writeSync(1, context.foo + '\n'); // Expose actual value the hook was called with return next(specifier, context); }