mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
26 lines
957 B
JSON
26 lines
957 B
JSON
{
|
|
"name": "lsp-mulit-server-sample",
|
|
"description": "A language server example demoing servers per workspace folder",
|
|
"author": "Microsoft Corporation",
|
|
"license": "MIT",
|
|
"version": "0.0.1",
|
|
"publisher": "vscode",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "cd server && npm install && cd ../client && npm install && cd ..",
|
|
"compile": "tsc -p client/tsconfig.json && cd server && npm run installServer && cd .. && tsc -p server/tsconfig.json",
|
|
"compile:client": "tsc -p client/tsconfig.json",
|
|
"watch:client": "tsc -w -p client/tsconfig.json",
|
|
"compile:server": "cd server && npm run installServer && cd .. && tsc -p server/tsconfig.json",
|
|
"watch:server": "cd server && npm run installServer && cd .. && tsc -w -p server/tsconfig.json"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^2.2.48",
|
|
"@types/node": "^6.0.101",
|
|
"typescript": "^2.7.2"
|
|
}
|
|
}
|