-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enabled the type hierarchy for Java and TS.
Signed-off-by: Alex Tugarev <[email protected]> Also-by: Akos Kitta <[email protected]>
- Loading branch information
1 parent
1c44854
commit 38827df
Showing
3 changed files
with
60 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,58 @@ | ||
{ | ||
"name": "@theia/typescript", | ||
"version": "0.4.0", | ||
"description": "Theia - Typescript Extension", | ||
"dependencies": { | ||
"@theia/application-package": "^0.4.0", | ||
"@theia/callhierarchy": "^0.4.0", | ||
"@theia/core": "^0.4.0", | ||
"@theia/editor": "^0.4.0", | ||
"@theia/filesystem": "^0.4.0", | ||
"@theia/languages": "^0.4.0", | ||
"@theia/monaco": "^0.4.0", | ||
"@theia/workspace": "^0.4.0", | ||
"command-exists": "^1.2.8", | ||
"typescript-language-server": "^0.3.7" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"theiaExtensions": [ | ||
{ | ||
"frontend": "lib/browser/typescript-frontend-module", | ||
"backend": "lib/node/typescript-backend-module" | ||
"name": "@theia/typescript", | ||
"version": "0.4.0", | ||
"description": "Theia - Typescript Extension", | ||
"dependencies": { | ||
"@theia/application-package": "^0.4.0", | ||
"@theia/callhierarchy": "^0.4.0", | ||
"@theia/core": "^0.4.0", | ||
"@theia/editor": "^0.4.0", | ||
"@theia/filesystem": "^0.4.0", | ||
"@theia/languages": "^0.4.0", | ||
"@theia/monaco": "^0.4.0", | ||
"@theia/workspace": "^0.4.0", | ||
"command-exists": "^1.2.8", | ||
"typescript-language-server": "0.4.0-dev.acc1561" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"theiaExtensions": [ | ||
{ | ||
"frontend": "lib/browser/typescript-frontend-module", | ||
"backend": "lib/node/typescript-backend-module" | ||
} | ||
], | ||
"keywords": [ | ||
"theia-extension" | ||
], | ||
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/theia-ide/theia.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/theia-ide/theia/issues" | ||
}, | ||
"homepage": "https://github.com/theia-ide/theia", | ||
"files": [ | ||
"lib", | ||
"src", | ||
"data" | ||
], | ||
"scripts": { | ||
"prepare": "yarn run clean && yarn run build", | ||
"clean": "theiaext clean", | ||
"build": "theiaext build", | ||
"watch": "theiaext watch", | ||
"test": "theiaext test", | ||
"docs": "theiaext docs" | ||
}, | ||
"devDependencies": { | ||
"@theia/ext-scripts": "^0.4.0" | ||
}, | ||
"nyc": { | ||
"extends": "../../configs/nyc.json" | ||
} | ||
], | ||
"keywords": [ | ||
"theia-extension" | ||
], | ||
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/theia-ide/theia.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/theia-ide/theia/issues" | ||
}, | ||
"homepage": "https://github.com/theia-ide/theia", | ||
"files": [ | ||
"lib", | ||
"src", | ||
"data" | ||
], | ||
"scripts": { | ||
"prepare": "yarn run clean && yarn run build", | ||
"clean": "theiaext clean", | ||
"build": "theiaext build", | ||
"watch": "theiaext watch", | ||
"test": "theiaext test", | ||
"docs": "theiaext docs" | ||
}, | ||
"devDependencies": { | ||
"@theia/ext-scripts": "^0.4.0" | ||
}, | ||
"nyc": { | ||
"extends": "../../configs/nyc.json" | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9472,9 +9472,10 @@ typedoc@^0.13.0: | |
typedoc-default-themes "^0.5.0" | ||
typescript "3.1.x" | ||
|
||
typescript-language-server@^0.3.7: | ||
version "0.3.7" | ||
resolved "https://registry.yarnpkg.com/typescript-language-server/-/typescript-language-server-0.3.7.tgz#ca4c28c1b9b4b9e6f9a60514ba059865ea5e48ef" | ||
[email protected]: | ||
version "0.4.0-dev.acc1561" | ||
resolved "https://registry.yarnpkg.com/typescript-language-server/-/typescript-language-server-0.4.0-dev.acc1561.tgz#d52fe3e4378de432d04327016bcbd8f8f0401707" | ||
integrity sha512-EtbJYcwRqe+wZh6K7auMvbcBjtbA6NX92RytQ3ThmxSBXBpchVYFo/4FaP+fP6rylW7YWi3PvYQVHUh05rFKmg== | ||
dependencies: | ||
command-exists "1.2.6" | ||
commander "^2.11.0" | ||
|