When running the command npx jsconfig.json, a file called jsconfig.json is generated at C:\Users\<username>\AppData\Roaming\npm with the following contents:
#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/node_modules/jsconfig.json/dist/cli.js" "$@"
else
exec node "$basedir/node_modules/jsconfig.json/dist/cli.js" "$@"
fi
The file is opened automatically in VSCode.
No jsonconfig.json is generated in the current working directory of my project.
When running the command
npx jsconfig.json, a file calledjsconfig.jsonis generated atC:\Users\<username>\AppData\Roaming\npmwith the following contents:The file is opened automatically in VSCode.
No
jsonconfig.jsonis generated in the current working directory of my project.