By default, Node.js uses the CommonJS syntax for modules. There are two ways you can manually switch to ES6 module syntax:
"type": "module" to your package.json file.mjs instead of .jsPersonally, I prefer the first option. It's cleaner and easier to manage. And remember, if you're not using ES6 modules, your code will not be in strict mode by default!
Let's do what the JavaScript system should have done years ago and migrate our code from CommonJS to ES6 modules.
Run and submit the CLI tests.