Files
dotfiles-modules/homemanager/neovim/lua/plugins/spec/server_configurations/json.lua
2025-10-14 12:29:46 +02:00

18 lines
349 B
Lua

return {
cmd = { "vscode-json-language-server", "--stdio" },
settings = {
json = {
schemas = {
{
fileMatch = { 'package.json' },
url = 'https://json.schemastore.org/package.json',
},
{
fileMatch = { 'tsconfig.json', 'tsconfig.*.json' },
url = 'https://json.schemastore.org/tsconfig.json'
}
},
},
}
}