1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-02 09:34:19 -04:00
denoland-deno/cli/tests/testdata/lsp/registries/deno-import-intellisense.json

36 lines
848 B
JSON
Raw Normal View History

{
"version": 1,
"registries": [
{
"schema": "/x/:module([a-z0-9_]*)@:version?/:path*",
"variables": [
{
"key": "module",
"url": "http://localhost:4545/lsp/registries/modules.json"
},
{
"key": "version",
"url": "http://localhost:4545/lsp/registries/${module}_versions.json"
},
{
"key": "path",
"url": "http://localhost:4545/lsp/registries/${module}_${{version}}.json"
}
]
},
{
"schema": "/x/:module([a-z0-9_]*)/:path*",
"variables": [
{
"key": "module",
"url": "http://localhost:4545/lsp/registries/modules.json"
},
{
"key": "path",
"url": "http://localhost:4545/lsp/registries/${module}_latest.json"
}
]
}
]
}