From 52229234d8e49fdac8a54a2aa155f0c681d6efd7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 7 Aug 2025 21:11:41 +0000 Subject: [PATCH 1/3] Initial plan From 6a2cd1b51db1da2d4026f60e36ea3b97e47aecf0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 7 Aug 2025 21:22:48 +0000 Subject: [PATCH 2/3] Upgrade TypeScript from 5.1.3 to 5.9.2 Co-authored-by: alexweininger <12476526+alexweininger@users.noreply.github.com> --- main.js | 4 ++-- package-lock.json | 9 +++++---- package.json | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/main.js b/main.js index 01717236a..da19e1e86 100644 --- a/main.js +++ b/main.js @@ -16,10 +16,10 @@ let perfStats = { Object.defineProperty(exports, "__esModule", { value: true }); -const extension = require('./out/src/extension'); +const extension = require('./dist/extension.bundle'); async function activate(ctx) { - return await extension.activateInternal(ctx, perfStats, true /* ignoreBundle */); + return await extension.activateInternal(ctx, perfStats); } async function deactivate(ctx) { diff --git a/package-lock.json b/package-lock.json index 895a3ae96..9f9baaf00 100644 --- a/package-lock.json +++ b/package-lock.json @@ -74,7 +74,7 @@ "mocha-multi-reporters": "^1.5.1", "request": "^2.88.2", "ts-node": "^10.9.1", - "typescript": "^5.1.3", + "typescript": "^5.9.0", "vinyl-buffer": "^1.0.1", "vinyl-source-stream": "^2.0.0", "vscode-azurekudu": "^0.2.0", @@ -11554,10 +11554,11 @@ } }, "node_modules/typescript": { - "version": "5.8.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz", - "integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==", + "version": "5.9.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz", + "integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==", "dev": true, + "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" diff --git a/package.json b/package.json index afb509475..f95aae50b 100644 --- a/package.json +++ b/package.json @@ -1460,7 +1460,7 @@ "mocha-multi-reporters": "^1.5.1", "request": "^2.88.2", "ts-node": "^10.9.1", - "typescript": "^5.1.3", + "typescript": "^5.9.0", "vinyl-buffer": "^1.0.1", "vinyl-source-stream": "^2.0.0", "vscode-azurekudu": "^0.2.0", From 8eda7d14540aa03a496e7be52f431009ac5df23c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 8 Aug 2025 17:25:26 +0000 Subject: [PATCH 3/3] Revert main.js changes to comply with copilot instructions Co-authored-by: MicroFish91 <40250218+MicroFish91@users.noreply.github.com> --- main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.js b/main.js index da19e1e86..01717236a 100644 --- a/main.js +++ b/main.js @@ -16,10 +16,10 @@ let perfStats = { Object.defineProperty(exports, "__esModule", { value: true }); -const extension = require('./dist/extension.bundle'); +const extension = require('./out/src/extension'); async function activate(ctx) { - return await extension.activateInternal(ctx, perfStats); + return await extension.activateInternal(ctx, perfStats, true /* ignoreBundle */); } async function deactivate(ctx) {