13 lines
966 B
Plaintext
13 lines
966 B
Plaintext
@SETLOCAL
|
|
@IF NOT DEFINED NODE_PATH (
|
|
@SET "NODE_PATH=C:\Users\ljl\Desktop\dajin\node_modules\.pnpm\typescript@4.8.4\node_modules\typescript\bin\node_modules;C:\Users\ljl\Desktop\dajin\node_modules\.pnpm\typescript@4.8.4\node_modules\typescript\node_modules;C:\Users\ljl\Desktop\dajin\node_modules\.pnpm\typescript@4.8.4\node_modules;C:\Users\ljl\Desktop\dajin\node_modules\.pnpm\node_modules"
|
|
) ELSE (
|
|
@SET "NODE_PATH=C:\Users\ljl\Desktop\dajin\node_modules\.pnpm\typescript@4.8.4\node_modules\typescript\bin\node_modules;C:\Users\ljl\Desktop\dajin\node_modules\.pnpm\typescript@4.8.4\node_modules\typescript\node_modules;C:\Users\ljl\Desktop\dajin\node_modules\.pnpm\typescript@4.8.4\node_modules;C:\Users\ljl\Desktop\dajin\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" %*
|
|
)
|