You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to familiar Deno lsp ,and do some contribute.
I found some code in client unit.ts
functiongetWorkspaceConfigDenoExePath(){constexePath=vscode.workspace.getConfiguration(EXTENSION_NS).get<string>("path");// it is possible for the path to be blank. In that case, return undefinedif(typeofexePath==="string"&&exePath.trim().length===0){returnundefined;}else{returnexePath;}}
That mean is I can config deno path to ".target/debug/bin"? if yes how should I write config ? @dsherret
Many Thanks
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I want to familiar Deno lsp ,and do some contribute.
I found some code in client unit.ts
That mean is I can config deno path to ".target/debug/bin"? if yes how should I write config ?
@dsherret
Many Thanks
Beta Was this translation helpful? Give feedback.
All reactions