-
Notifications
You must be signed in to change notification settings - Fork 324
/
.lsifrc.json
23 lines (23 loc) · 1.01 KB
/
.lsifrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
// The root TypeScript project to index
"project": "./tsconfig.json",
// The name of the output file
"out": "lsp.lsif",
// 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" }
],
// 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"
}
}