I decided to create an app with React using VS Code. Ran the npm create-react-app ./ and was successful. Next I decided to run the command npm start but it compiled with errors like
/src/index.js and [eslint] src\index.jsur
>Solution :
Make sure to execute npm start in the project directory, inside of the same folder where is located package.json
I would recommend to check npm version, and use npx for the creation of the react project, npx create-react-app myapp. and after execute something else, check the package.json content.