Skip to content

Instantly share code, notes, and snippets.

@ljmotta
Created October 13, 2020 21:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ljmotta/218f64d3986be6b041aa2930e5f5e3a9 to your computer and use it in GitHub Desktop.
Save ljmotta/218f64d3986be6b041aa2930e5f5e3a9 to your computer and use it in GitHub Desktop.
Base64Png VS Code package.json extension
import * as vscode from "vscode";
export function activate(context: vscode.ExtensionContext) {
console.info("Extension is alive.");
// activate code here
}
export function deactivate() {
console.info("Extension is deactivating");
// deactivate code here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment