18 lines
349 B
Lua
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'
|
|
}
|
|
},
|
|
},
|
|
}
|
|
}
|