console.log("-------------------");
console.log("Rise & Shine!");
console.log("Ready for a new day!");
console.log("-------------------");
On vscode, when I press F5, instead of running and debugging the above code/displaying outcome in debug panel, it opens a new window titled "[Extension Development Host] settings.json - Visual Studio Code and returns the following code:
{
"workbench.colorTheme": "Default High Contrast",
"workbench.startupEditor": "none",
"files.autoSave": "afterDelay",
"explorer.confirmDelete": false
}
How do I get vscode to run/debug and show results for the first code in the debug console?
Thank you