mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
25981550d5
This PR extracts Deno support into an extension and removes the built-in Deno support from Zed. When using the Deno extension, you'll want to add the following to your settings to disable the built-in TypeScript and ESLint language servers so that they don't conflict with Deno's functionality: ```json { "languages": { "TypeScript": { "language_servers": ["deno", "!typescript-language-server", "!eslint", "..."] }, "TSX": { "language_servers": ["deno", "!typescript-language-server", "!eslint", "..."] } } } ``` Release Notes: - Removed built-in support for Deno, in favor of making it available as an extension.
17 lines
224 B
TOML
17 lines
224 B
TOML
[package]
|
|
name = "zed_deno"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "Apache-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/deno.rs"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
zed_extension_api = "0.0.6"
|