Is tsserver and eslint_d redundant? #744
-
Do I still need to enable |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This isn't really null-ls related, but yes, these are two different things. |
Beta Was this translation helpful? Give feedback.
This isn't really null-ls related, but yes, these are two different things.
tsserver
is a full-fledged language server that will provide TypeScript diagnostics and other features based on your project. ESLint is a more local linter that checks the current file for errors, but it's generally not aware of type issues / issues beyond the current file. For most TypeScript projects, you'll want to use both, and you may want to consider using the ESLint language server instead of null-ls.