Can I directly download the JSON schema for deno.jsonc
?
#13091
-
It is not available on https://www.schemastore.org/json/ , is it available somewhere in the same format as https://json.schemastore.org/tsconfig.json ? This would mean it could be used outside of VS Code, for example using the same JSON language server from VS Code via its own LSP in Neovim:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
It is available at https://github.com/denoland/deno/blob/main/cli/schemas/config-file.v1.json. vscode_deno uses it from https://raw.githubusercontent.com/denoland/deno/main/cli/schemas/config-file.v1.json perfectly fine. |
Beta Was this translation helpful? Give feedback.
-
Thanks! For Neovim add https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#jsonls and:
For |
Beta Was this translation helpful? Give feedback.
It is available at https://github.com/denoland/deno/blob/main/cli/schemas/config-file.v1.json.
vscode_deno uses it from https://raw.githubusercontent.com/denoland/deno/main/cli/schemas/config-file.v1.json perfectly fine.