/*
In the nearest parent package.json file, add the top-level "type"
field with a value of "module". This will ensure that all .js and .mjs
files are interpreted as ES modules. You can interpret individual files
as CommonJS by using the .cjs extension.
*/
// package.json
{
"type": "module"
}