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