If I set "addDefaultProperty" to true,
module.exports = exports['default']; module.exports.default = exports['default'] will be added, which means module.exports.default may circular reference itself.
It will lead to circular reference problem when I try to JSON.stringify(module.exports).
If I set "addDefaultProperty" to true,
module.exports = exports['default']; module.exports.default = exports['default']will be added, which meansmodule.exports.defaultmay circular reference itself.It will lead to circular reference problem when I try to
JSON.stringify(module.exports).