In this post, you are going to learn how to enable the official vscode_deno extension in your visual studio Code.
After installing the extension, to enable it for your current project, Create a .vscode/settings.json file in your project folder and add the following JSON:
// .vscode/settings.json
{
"deno.enable": true,
}
You can also use the VS Code user interface to change the setting for the Workspace. Enabling the Deno extension for the User is not recommended.