Getting this error while run nodejs project. Following below commands.
nodemon --exec src/app.js
nodemon --exec src/server.js
Below are the dependency
Here I have resolved the issue by installing ESM.
npm install --save esm
And then run
node -r esm src/server.js