mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
21 lines
537 B
JSON
21 lines
537 B
JSON
{
|
|
"name": "multi-lsp-server",
|
|
"version": "0.1.0",
|
|
"description": "Multi server example",
|
|
"engines": {
|
|
"node": "*"
|
|
},
|
|
"private": true,
|
|
"main": "./lib/server.js",
|
|
"dependencies": {
|
|
"vscode-languageserver": "next"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^2.4.2",
|
|
"@types/node": "^6.0.87"
|
|
},
|
|
"scripts": {
|
|
"compile": "installServerIntoExtension ../client ./package.json ./src/tsconfig.json && tsc -p ./src",
|
|
"watch": "installServerIntoExtension ../client ./package.json ./src/tsconfig.json && tsc --watch -p ./src"
|
|
}
|
|
} |