Expected Behavior
With defaultIsModuleExports: 'auto', a module with exports.__esModule = true has its default export taken from exports.default.
Actual Behavior
When both defaultIsModuleExports: 'auto' and strictRequires: true are used together, __esModule is ignored and the default export is an object { __esModule: true, default: ... }.
Additional Information