This commit is contained in:
2023-09-29 19:14:53 -07:00
parent 9ee21dbe30
commit 929d4e1ccd
44 changed files with 3147 additions and 174 deletions

View File

@ -0,0 +1,7 @@
// This script will be run within the webview itself
// It cannot access the main VS Code APIs directly.
(function () {
const vscode = acquireVsCodeApi();
console.log("hello there from javascript");
})();