Files
license/web/node_modules/.bin/tsc.CMD
2026-07-31 16:59:55 +08:00

13 lines
900 B
Batchfile

@SETLOCAL
@IF NOT DEFINED NODE_PATH (
@SET "NODE_PATH=D:\work\license\web\node_modules\.pnpm\typescript@5.8.3\node_modules\typescript\bin\node_modules;D:\work\license\web\node_modules\.pnpm\typescript@5.8.3\node_modules\typescript\node_modules;D:\work\license\web\node_modules\.pnpm\typescript@5.8.3\node_modules;D:\work\license\web\node_modules\.pnpm\node_modules"
) ELSE (
@SET "NODE_PATH=D:\work\license\web\node_modules\.pnpm\typescript@5.8.3\node_modules\typescript\bin\node_modules;D:\work\license\web\node_modules\.pnpm\typescript@5.8.3\node_modules\typescript\node_modules;D:\work\license\web\node_modules\.pnpm\typescript@5.8.3\node_modules;D:\work\license\web\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\typescript\bin\tsc" %*
) ELSE (
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\typescript\bin\tsc" %*
)