VOOZH about

URL: https://marketplace.visualstudio.com/items?itemName=axetroy.vscode-deno

⇱ [Deprecated] Deno - Visual Studio Marketplace


Skip to content
👁 Image
Sign in
Visual Studio Code>Programming Languages>[Deprecated] DenoNew to Visual Studio Code? Get it now.
👁 [Deprecated] Deno

[Deprecated] Deno

[Deprecated] Deno support for VSCode
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

The project is no longer maintained. move to official extension

English | ä¸­æ–‡įŽ€äŊ“

Features:

Usage

  1. Download and enable the extension from the Visual Studio Marketplace

  2. Enable Deno for your project:

    Create a file .vscode/settings.json in your project folder:

    // .vscode/settings.json
    {
     "deno.enable": true,
    }
    
  3. 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.

  1. Fork project

  2. Clone onto your computer:

    $ git clone https://github.com/your_github_name/vscode-deno.git
    $ cd vscode-deno
    $ yarn # or npm install
    
  3. Disable extension in Visual Studio Code if you have extension before

  4. 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

  5. Try updating Visual Studio Code and restart the debugger

  6. 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