javascript-typescript-langserver
javascript-typescript-langserver copied to clipboard
JavaScript and TypeScript code intelligence through the Language Server Protocol
I have a project that has no errors when running `tsc` on it, but will show errors when opening it in VSCode with the javascript-typescript-langserver extensions. The problem occurs because...
With the following code: ``` import React from "react"; import OtherComponent from "./OtherComponent"; const MainComponent = props => { return ( {props.item.date} {props.item.description} props.doStuff()} /> ); }; export default MainComponent;...
 like the image shows, I will start a language client when the extension activated. But it shows error when I input some codes. Any one could help me with...
Hello, Does this langserver has a plan to support Yarn pnp. This langserver will report cannot find module errors if I happen to use yarn pnp feature. There are several...
Is there any way to support babel plugins, like optional chaining? Or do we have to wait for the typescript implementation? (3.7! 🎉) https://github.com/sourcegraph/javascript-typescript-langserver/issues/496 I saw this issue, which leads...
In VSCode if I did the following ```typescript type TupleTest = [string, string] const foo: TupleTest = ['one', 'two'] ``` and then were typing such that I was midway through...
I'm using `coc.nvim` with `javascript-typescript-stdio`, but it seems not reading configs from my `tsconfig.json` `this.` would trigger semantic completion correctly, but symbols from `libs` (or other dirs configured by `tsconfig.json`)...
### Issues Resolves issues [#471](https://github.com/sourcegraph/javascript-typescript-langserver/issues/471), [#477](https://github.com/sourcegraph/javascript-typescript-langserver/issues/477) and [#463](https://github.com/sourcegraph/javascript-typescript-langserver/issues/463) ### Description Previously when using a LocalFileSystem, all files in the workspace with Typescript related extensions were cached in memory on startup....
I'm using the Neovim plugin: [LanguageClient-neovim](https://github.com/autozimu/LanguageClient-neovim) to interact with this language server. Operations such as going to a definition or finding all references are slowed down a great deal since...