summaryrefslogtreecommitdiffhomepage
path: root/js/src/lsp
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-05-28 17:24:15 -0400
committerDax Raad <[email protected]>2025-05-28 17:24:21 -0400
commite88264075a8b67c46b57d13db8488f4f01e7f9f1 (patch)
tree74aeb70ee3625355ab5c0440451505ca10997a80 /js/src/lsp
parent041a080a139a06402d9c0ce4d37622f9eb49e729 (diff)
downloadopencode-e88264075a8b67c46b57d13db8488f4f01e7f9f1.tar.gz
opencode-e88264075a8b67c46b57d13db8488f4f01e7f9f1.zip
sync
Diffstat (limited to 'js/src/lsp')
-rw-r--r--js/src/lsp/client.ts4
-rw-r--r--js/src/lsp/index.ts2
2 files changed, 3 insertions, 3 deletions
diff --git a/js/src/lsp/client.ts b/js/src/lsp/client.ts
index 1de187a94..fda77948a 100644
--- a/js/src/lsp/client.ts
+++ b/js/src/lsp/client.ts
@@ -1,5 +1,5 @@
-import { spawn } from "node:child_process";
-import path from "node:path";
+import { spawn } from "child_process";
+import path from "path";
import {
createMessageConnection,
StreamMessageReader,
diff --git a/js/src/lsp/index.ts b/js/src/lsp/index.ts
index f8b019e04..ee5a8b2d7 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 "node:path";
+import path from "path";
export namespace LSP {
const log = Log.create({ service: "lsp" });