How to solve Eslint - Module.createRequire is not a function error?
I had the same issue. Tried in Webstorm terminal following commands:
nvm current
(I use nvm) and node -v
. Both of these commands returned 16.14.0
.
But the issue only went away when I changed default used version of node in Webstorm editor itself. You can do this by pressing CTRL + ALT + S
. Then select Languages & Frameworks
and after that Node.js
. Value for Node interpreter:
was there 10 and I switched it there to 16.14.0. If you do not have this version od nodejs installed on your machine, I suggest you use nvm (node version manager).