Instead of exporting module.exports = exports.default; is it possible to add an option to export module.exports = myDefaultVariableName? Because the VS Code does not understand the first option to infer types but works fine with the second one. Thanks.
Instead of exporting
module.exports = exports.default;is it possible to add an option to exportmodule.exports = myDefaultVariableName? Because the VS Code does not understand the first option to infer types but works fine with the second one. Thanks.