We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It should let me choose between react, react native or node (as per this video https://www.youtube.com/watch?v=I6ypD7qv3Z8&t=296s) but it only create a file with the following
#!/bin/sh basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") case `uname` in *CYGWIN*) basedir=`cygpath -w "$basedir"`;; esac if [ -x "$basedir/node" ]; then "$basedir/node" "$basedir/../tsconfig.json/src/index.js" "$@" ret=$? else node "$basedir/../tsconfig.json/src/index.js" "$@" ret=$? fi exit $ret
The text was updated successfully, but these errors were encountered:
I am also experiencing the same problem, the solution is found in issue #18
Sorry, something went wrong.
Related npm/cli#4445 and npm/exec#17
The work around is to install it globally and then manually call the file like so.
npm i -g tsconfig.json C:\"Program Files"\nodejs\tsconfig.json.cmd
The work around is to install it globally and then manually call the file like so. npm i -g tsconfig.json C:\"Program Files"\nodejs\tsconfig.json.cmd
This work thanks!
Here's what I did in the terminal:
npm i -g tsconfig.json npx tsconfig.json.cmd
No branches or pull requests
It should let me choose between react, react native or node (as per this video https://www.youtube.com/watch?v=I6ypD7qv3Z8&t=296s) but it only create a file with the following
The text was updated successfully, but these errors were encountered: