8 lines
210 B
JavaScript
8 lines
210 B
JavaScript
// 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");
|
|
})();
|