From 2093c1607a6e429773fc4d5f2047b3bda921d5dd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 8 Aug 2025 18:40:49 +0000 Subject: [PATCH 1/3] Initial plan From 17d811c6eedf6f975bb0dce1ea7cf75b2a80cc6f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 8 Aug 2025 18:50:57 +0000 Subject: [PATCH 2/3] Upgrade TypeScript devDependency to ^5.9.2 Co-authored-by: nturinski <5290572+nturinski@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..976cb1943 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.2", "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..0f38c5224 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.2", "vinyl-buffer": "^1.0.1", "vinyl-source-stream": "^2.0.0", "vscode-azurekudu": "^0.2.0", From 4031ed0fa74726f7e06d8179620d59fa6c70dc8f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 8 Aug 2025 18:51:57 +0000 Subject: [PATCH 3/3] Revert automatically generated changes to main.js As specified in instructions, main.js changes were reverted since they are generated automatically during webpack build process. --- 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) {