Currently package.json specifies >=12.18 in engines.node, but the code uses ??= and util/types which are Node.js 15+ features.
The implementation should look like...
Updating package.json to reflect the correct minimum Node.js version.
I have also considered...
Alternatively, the code could stop using those features to retain compatibility with 12.18+
Currently
package.jsonspecifies>=12.18inengines.node, but the code uses??=andutil/typeswhich are Node.js 15+ features.The implementation should look like...
Updating
package.jsonto reflect the correct minimum Node.js version.I have also considered...
Alternatively, the code could stop using those features to retain compatibility with 12.18+