blob: 4a6add16a544e308870c3b2a8a9718c3118bc026 [file] [log] [blame]
#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/home/coded/Documents/programming/AoC/2023/node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/bin/node_modules:/home/coded/Documents/programming/AoC/2023/node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/node_modules:/home/coded/Documents/programming/AoC/2023/node_modules/.pnpm/typescript@5.3.2/node_modules:/home/coded/Documents/programming/AoC/2023/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/home/coded/Documents/programming/AoC/2023/node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/bin/node_modules:/home/coded/Documents/programming/AoC/2023/node_modules/.pnpm/typescript@5.3.2/node_modules/typescript/node_modules:/home/coded/Documents/programming/AoC/2023/node_modules/.pnpm/typescript@5.3.2/node_modules:/home/coded/Documents/programming/AoC/2023/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../typescript/bin/tsserver" "$@"
else
exec node "$basedir/../typescript/bin/tsserver" "$@"
fi