The project is no longer maintained. move to official extension
English | 䏿įŽäŊ
Features:
Usage
Download and enable the extension from the Visual Studio Marketplace
Enable Deno for your project:
Create a file .vscode/settings.json in your project folder:
// .vscode/settings.json
{
"deno.enable": true,
}
Enjoy!
Configuration
deno.enable - Enable extension. Default is false
deno.import_map - The file paths of Import Map. Default is null
deno.unstable - If Deno's unstable mode is enabled. Default is false
We recommend that you do not set global configuration. It should be configured in .vscode/settings.json in the project directory:
// .vscode/settings.json
{
"deno.enable": true,
"deno.import_map": "./path/to/import_map.json",
"deno.unstable": false,
}
This extension also provides Deno's formatting tools, settings are in .vscode/settings.json:
// .vscode/settings.json
{
"[typescript]": {
"editor.defaultFormatter": "axetroy.vscode-deno",
},
"[typescriptreact]": {
"editor.defaultFormatter": "axetroy.vscode-deno",
},
}
Contribute
Follow these steps to contribute, the community needs your strength.
Fork project
Clone onto your computer:
$ git clone https://github.com/your_github_name/vscode-deno.git
$ cd vscode-deno
$ yarn # or npm install
Disable extension in Visual Studio Code if you have extension before
Start debug extension
Open Visual Studio Code, find the Run item in the sidebar
and then run Launch Client task.
Wait for Visual Studio Code debugger to open a new window
Try updating Visual Studio Code and restart the debugger
Finally, push to your fork and send a PR
Thanks
This project was originally a fork of justjavac/vscode-deno, Thanks for their contributions.
License
The MIT License