vscode-languageserver-node/.lsifrc.json

23 строки
1.0 KiB
JSON
Исходник Обычный вид История

2021-02-10 20:11:02 +03:00
{
2021-02-11 18:54:29 +03:00
// The root TypeScript project to index
"project": "./tsconfig.json",
// The name of the output file
2021-02-10 20:11:02 +03:00
"out": "lsp.lsif",
2021-02-11 18:54:29 +03:00
// A mapping describing which packages are published to npm and what TS project files is used
// to generate the package code.
"publishedPackages": [
{ "package": "./textDocument/package.json", "project": "./textDocument/tsconfig.json" },
{ "package": "./types/package.json", "project": "./types/tsconfig.json" },
{ "package": "./jsonrpc/package.json", "project": "./jsonrpc/tsconfig.json" },
{ "package": "./protocol/package.json", "project": "./protocol/tsconfig.json" },
{ "package": "./server/package.json", "project": "./server/tsconfig.json" },
{ "package": "./client/package.json", "project": "./client/tsconfig.json" }
2021-05-11 16:12:51 +03:00
],
// Get the source info from the package.json file
"source": "./package.json",
// The catalog information
"catalogInfo": {
"uri": "lsif-cat://microsoft.com/azure/devdiv/vscode/vscode-languageserver-node",
"name": "VS Code LSP implementation in Node"
}
2021-02-10 20:11:02 +03:00
}