Skip to content

Commit

Permalink
Fix syntax error after changing the export
Browse files Browse the repository at this point in the history
I decided to pull in the full export for click-through ability to go to the top level of the types.
  • Loading branch information
TomasHubelbauer committed Sep 17, 2024
1 parent b0ce015 commit 2b4b951
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .vscode/extensions/my-extension/extension.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
// Run `bun install` to install `@types/vscode`
// See https://code.visualstudio.com/api/references/vscode-api for the reference
const vscode = require('vscode');

function activate(/** @type {vscode.ExtensionContext} */ _context) {
window.showInformationMessage('Hello World from my-extension!');
vscode.window.showInformationMessage('Hello World from my-extension!');
}

function deactivate() {
Expand Down

0 comments on commit 2b4b951

Please sign in to comment.