[Vuejs]-Vue.js: Cannot run project; jsconfig.json file is empty?

1👍

npm and node are related but will have different version numbers. You can find out your Node version from running node -v in your terminal.

From searching previous releases I found that npm 6.14.13 is associated with Node 14

The Vue quick-start guide under pre-requisites states:

Install Node.js version 16.0 or higher

Retry making a new Vue app after upgrading your version of Node (latest LTS version is currently 18.14.2)

👤yoduh

Leave a comment