erlang-language-platform/editors/code/client/package.json
Alan Zimmerman 331072ad66 Update VS Code configuration options
Summary:
- Remove unused server.ts
- Rename the configuration section `Erlang Language Platform` rather then `Example Extension`
- Rename the configuration settings used in the client only to have `elpClient` prefix
- Insert a configuration section for all currently accepted elp configurations.
  - This is done by running `elp config > /tmp/config.json` and editing in the contents

Reviewed By: robertoaloi

Differential Revision: D56417232

fbshipit-source-id: 06cc5ab77c992514a5a445d5627313fdc04ae719
2024-04-22 07:19:06 -07:00

22 lines
505 B
JSON

{
"name": "erlang-language-platform",
"description": "Erlang language server, using Erlang Language Platform",
"author": "Meta Platforms, Inc",
"license": "MIT",
"version": "0.0.1",
"publisher": "vscode",
"repository": {
"type": "git",
"url": "https://github.com/WhatsApp/erlang-language-platform"
},
"engines": {
"vscode": "^1.75.0"
},
"dependencies": {
"vscode-languageclient": "^8.1.0"
},
"devDependencies": {
"@types/vscode": "^1.75.1",
"@vscode/test-electron": "^2.2.3"
}
}