Skip to content

Commit 5f7fadd

Browse files
authored
chore: update vscode-languageclient to 10.0.0-next.13 (#1324)
1 parent d287fe2 commit 5f7fadd

File tree

9 files changed

+121
-81
lines changed

9 files changed

+121
-81
lines changed

client/package-lock.json

Lines changed: 109 additions & 70 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@
1111
"url": "https://github.com/denoland/vscode_deno"
1212
},
1313
"engines": {
14-
"vscode": "^1.77.0"
14+
"vscode": "^1.91.0"
1515
},
1616
"dependencies": {
1717
"dotenv": "^16.4.5",
1818
"jsonc-parser": "^3.2.0",
1919
"semver": "7.5.2",
20-
"vscode-languageclient": "^9.0.1"
20+
"vscode-languageclient": "^10.0.0-next.13"
2121
},
2222
"devDependencies": {
2323
"@types/semver": "7.3.9",
24-
"@types/vscode": "1.77.0",
24+
"@types/vscode": "1.91.0",
2525
"vscode-test": "^1.6.1"
2626
}
2727
}

client/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export async function activate(
7979
context: vscode.ExtensionContext,
8080
): Promise<void> {
8181
extensionContext.outputChannel = extensionContext.outputChannel ??
82-
vscode.window.createOutputChannel(LANGUAGE_CLIENT_NAME);
82+
vscode.window.createOutputChannel(LANGUAGE_CLIENT_NAME, { log: true });
8383
extensionContext.denoInfoJson = await getDenoInfoJson(
8484
extensionContext.outputChannel,
8585
);

client/src/types.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export interface DenoExtensionContext {
3838
denoInfoJson: DenoInfoJson | null;
3939
statusBar: DenoStatusBar;
4040
tsApi: TsApi;
41-
outputChannel: vscode.OutputChannel;
41+
outputChannel: vscode.LogOutputChannel;
4242
tasksSidebar: DenoTasksTreeDataProvider;
4343
maxTsServerMemory: number | null;
4444
enableSettingsUnscoped: EnableSettings;

client/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"compilerOptions": {
3-
"module": "commonjs",
3+
"module": "nodenext",
4+
"moduleResolution": "nodenext",
45
"target": "es2019",
56
"lib": [
67
"ES2019"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"deno"
3030
],
3131
"engines": {
32-
"vscode": "^1.77.0"
32+
"vscode": "^1.91.0"
3333
},
3434
"activationEvents": [
3535
"onLanguage:typescript",

typescript-deno-plugin/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typescript-deno-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"url": "https://github.com/denoland/vscode_deno"
1717
},
1818
"engines": {
19-
"vscode": "^1.77.0"
19+
"vscode": "^1.91.0"
2020
},
2121
"devDependencies": {
2222
"typescript": "^5.0.2"

0 commit comments

Comments
 (0)