diff options
Diffstat (limited to 'js/src/lsp')
| -rw-r--r-- | js/src/lsp/client.ts | 4 | ||||
| -rw-r--r-- | js/src/lsp/index.ts | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/js/src/lsp/client.ts b/js/src/lsp/client.ts index ce2adebda..73a216b06 100644 --- a/js/src/lsp/client.ts +++ b/js/src/lsp/client.ts @@ -1,5 +1,5 @@ -import { spawn } from "child_process"; -import path from "path"; +import { spawn } from "node:child_process"; +import path from "node:path"; import { createMessageConnection, StreamMessageReader, diff --git a/js/src/lsp/index.ts b/js/src/lsp/index.ts index 358c6a549..f9d48e7bf 100644 --- a/js/src/lsp/index.ts +++ b/js/src/lsp/index.ts @@ -1,7 +1,7 @@ import { App } from "../app"; import { Log } from "../util/log"; import { LSPClient } from "./client"; -import path from "path"; +import path from "node:path"; export namespace LSP { const log = Log.create({ service: "lsp" }); |
