是否有开源的typescript语言服务器(使用语言服务器协议)?如果目前还没有,我听说微软正在开发一个;它会是开源的吗?我看到了https://github.com/Microsoft/TypeScript/tree/master/src/server,但不太确定它是什么。
发布于 2016-09-30 15:27:24
https://github.com/Microsoft/TypeScript/tree/master/src/server的源代码是关于tsserver的。
tsserver是一个readline节点服务器,但它不使用语言服务器协议2.0。
在支持语言服务器的TypeScript时,https://github.com/Microsoft/TypeScript/issues/11274存在一个问题。
发布于 2017-04-13 02:53:05
现在有了支持TypeScript的语言服务器(遵循语言服务器协议):https://github.com/sourcegraph/javascript-typescript-langserver
https://stackoverflow.com/questions/39559780
复制相似问题