typescript-language-server
Advanced tools
Comparing version 0.1.0 to 0.1.1
@@ -38,4 +38,4 @@ "use strict"; | ||
this.logger.info("Looking up 'tsserver' in " + this.rootPath()); | ||
const path = modules_resolver_1.findPathToModule(this.rootPath(), 'typescript/bin/tsserver'); | ||
return path || 'tsserver'; | ||
let path = modules_resolver_1.findPathToModule(this.rootPath(), '.bin/tsserver') || 'tsserver'; | ||
return protocol_translation_1.isWindows() ? path + ".cmd" : path; | ||
} | ||
@@ -42,0 +42,0 @@ initialize(params) { |
{ | ||
"name": "typescript-language-server", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Language Server Protocol (LSP) implementation for TypeScript using tsserver", | ||
@@ -14,4 +14,3 @@ "scripts": { | ||
"files": [ | ||
"lib", | ||
"src" | ||
"lib" | ||
], | ||
@@ -18,0 +17,0 @@ "author": "TypeFox and others", |
@@ -52,9 +52,9 @@ # TypeScript LSP | ||
-V, --version output the version number | ||
--stdio use stdio | ||
--node-ipc use node-ipc | ||
--socket <port> use socket. example: --socket=5000 | ||
--tsserver-path <path> absolute path to tsserver. example: --tsserver-path=/bin/tsserver | ||
--tsserver-logFile <logFile> Specify a log file. example: --tsserver-logFile=logs.txt | ||
-h, --help output usage information | ||
-V, --version output the version number | ||
--stdio use stdio | ||
--node-ipc use node-ipc | ||
--socket <port> use socket. example: --socket=5000 | ||
--tsserver-logFile <tsServerLogFile> Specify a tsserver log file. example: --tsServerLogFile=ts-logs.txt | ||
--tsserver-path <path> Specifiy absolute path to tsserver. example: --tsserver-path=/bin/tsserver | ||
-h, --help output usage information | ||
``` | ||
@@ -61,0 +61,0 @@ |
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
1
128496
1695