githrun

A CLI tool to run Python scrip...
Log | Files | Refs | Activity | README | LICENSE

root / vscode-githrun / node_modules / .bin / tsserver

tsserver (395B)


      1 #!/bin/sh
      2 basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
      3 
      4 case `uname` in
      5     *CYGWIN*|*MINGW*|*MSYS*)
      6         if command -v cygpath > /dev/null 2>&1; then
      7             basedir=`cygpath -w "$basedir"`
      8         fi
      9     ;;
     10 esac
     11 
     12 if [ -x "$basedir/node" ]; then
     13   exec "$basedir/node"  "$basedir/../typescript/bin/tsserver" "$@"
     14 else 
     15   exec node  "$basedir/../typescript/bin/tsserver" "$@"
     16 fi
© notamitgamer • Site Built: 2026-09-05 01:53:16 UTC • git-mirror commit: c170d72 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror