install project

This commit is contained in:
2026-04-13 08:21:07 +00:00
commit a29002b429
9849 changed files with 2198294 additions and 0 deletions

21
node_modules/.bin/tsc generated vendored Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/home/aminghasempoor/create_local_front_app/witelflix/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/bin/node_modules:/home/aminghasempoor/create_local_front_app/witelflix/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/node_modules:/home/aminghasempoor/create_local_front_app/witelflix/node_modules/.pnpm/typescript@5.9.3/node_modules:/home/aminghasempoor/create_local_front_app/witelflix/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/home/aminghasempoor/create_local_front_app/witelflix/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/bin/node_modules:/home/aminghasempoor/create_local_front_app/witelflix/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/node_modules:/home/aminghasempoor/create_local_front_app/witelflix/node_modules/.pnpm/typescript@5.9.3/node_modules:/home/aminghasempoor/create_local_front_app/witelflix/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../typescript/bin/tsc" "$@"
else
exec node "$basedir/../typescript/bin/tsc" "$@"
fi