File: .lsifrc.json

package info (click to toggle)
node-vscode-lsp 1.0.0~git20230424.1320922-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,140 kB
  • sloc: javascript: 451; sh: 41; makefile: 23
file content (23 lines) | stat: -rw-r--r-- 1,034 bytes parent folder | download
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"
	}
}