1export async function resolve(specifier, context, next) { 2 return next(specifier, { 3 ...context, 4 foo: 'bar', 5 }); 6} 7