Files
soul-yongping/soul-admin/node_modules/.bin/tsserver.CMD
2026-02-09 14:43:35 +08:00

13 lines
986 B
Batchfile

@SETLOCAL
@IF NOT DEFINED NODE_PATH (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\typescript@5.6.3\node_modules\typescript\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\typescript@5.6.3\node_modules\typescript\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\typescript@5.6.3\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
) ELSE (
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\typescript@5.6.3\node_modules\typescript\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\typescript@5.6.3\node_modules\typescript\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\typescript@5.6.3\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
)
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\typescript\bin\tsserver" %*
) ELSE (
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\typescript\bin\tsserver" %*
)