LSP-typescript
TypeScript, JavaScript support for Sublime LSP plugin
Details
Installs
- Total 43K
- Win 15K
- Mac 16K
- Linux 12K
Aug 26 | Aug 25 | Aug 24 | Aug 23 | Aug 22 | Aug 21 | Aug 20 | Aug 19 | Aug 18 | Aug 17 | Aug 16 | Aug 15 | Aug 14 | Aug 13 | Aug 12 | Aug 11 | Aug 10 | Aug 9 | Aug 8 | Aug 7 | Aug 6 | Aug 5 | Aug 4 | Aug 3 | Aug 2 | Aug 1 | Jul 31 | Jul 30 | Jul 29 | Jul 28 | Jul 27 | Jul 26 | Jul 25 | Jul 24 | Jul 23 | Jul 22 | Jul 21 | Jul 20 | Jul 19 | Jul 18 | Jul 17 | Jul 16 | Jul 15 | Jul 14 | Jul 13 | Jul 12 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 13 | 11 | 10 | 5 | 6 | 16 | 14 | 13 | 14 | 6 | 5 | 11 | 18 | 7 | 13 | 14 | 6 | 5 | 15 | 4 | 14 | 17 | 17 | 5 | 11 | 15 | 13 | 11 | 12 | 10 | 9 | 11 | 10 | 7 | 13 | 15 | 13 | 11 | 3 | 12 | 11 | 13 | 14 | 10 | 7 | 8 |
Mac | 8 | 7 | 6 | 8 | 6 | 12 | 9 | 8 | 11 | 7 | 10 | 6 | 9 | 5 | 10 | 10 | 10 | 8 | 5 | 7 | 4 | 10 | 9 | 5 | 2 | 6 | 9 | 5 | 6 | 6 | 6 | 4 | 7 | 12 | 11 | 10 | 14 | 6 | 6 | 8 | 9 | 4 | 10 | 10 | 6 | 7 |
Linux | 5 | 17 | 7 | 5 | 9 | 7 | 9 | 9 | 9 | 10 | 12 | 13 | 5 | 7 | 6 | 7 | 11 | 7 | 10 | 14 | 6 | 12 | 7 | 7 | 7 | 7 | 8 | 10 | 8 | 7 | 9 | 10 | 6 | 10 | 11 | 20 | 12 | 5 | 10 | 5 | 12 | 9 | 8 | 2 | 17 | 6 |
Readme
- Source
- raw.githubusercontent.com
LSP-typescript
TypeScript and JavaScript support for Sublime's LSP plugin provided through TypeScript Language Server.
Installation
- Install
LSP
andLSP-typescript
from Package Control. - For ST4: The TypeScript and React (TSX) syntaxes are built-in so no need to install anything else.
- For ST3: If you are working with TypeScript install TypeScript Syntax. If you are working with React install JSCustom.
- Restart Sublime.
Configuration
Open the configuration file using the Command Palette Preferences: LSP-typescript Settings
command or open it from the Sublime menu.
Organize Imports command
To sort or remove unused imports you can trigger the LSP-typescript: Organize Imports
command from the Command Palette or create a key binding. For example:
{ "keys": ["ctrl+k"], "command": "lsp_execute",
"args": {
"session_name": "LSP-typescript",
"command_name": "_typescript.organizeImports",
"command_args": ["${file}"]
}
},
Code Actions on Save
The server supports the following code actions that can be specified in the global lsp_code_actions_on_save
setting and run on saving files:
source.addMissingImports.ts
- adds imports for used but not imported symbolssource.fixAll.ts
- despite the name, fixes a couple of specific issues: unreachable code, await in non-async functions, incorrectly implemented interfacesource.organizeImports.ts
- organizes and removes unused importssource.removeUnused.ts
- removes declared but unused variablessource.removeUnusedImports.ts
- removes unused importssource.sortImports.ts
- sorts imports
Goto Source Definition command
TypeScript 4.7+ supports Go To Source Definition. It’s similar to Go To Definition, but it never returns results inside declaration files. Instead, it tries to find corresponding implementation files (like .js or .ts files), and find definitions there — even if those files are normally shadowed by .d.ts files.
This comes in handy most often when you need to peek at the implementation of a function you're importing from a library instead of its type declaration in a .d.ts file.
Run LSP-typescript: Goto Source Definition
from the Command Palette to invoke this functionality or bind lsp_typescript_goto_source_definition
to a custom key binding.
Inlay hints
Inlay hints are short textual annotations that show parameter names, type hints.
To enable inlay hints:
- Open the command palette and select
Preferences: LSP Settings
, then enableshow_inlay_hints
:
{
"show_inlay_hints": true
}
- Modify the following settings through
Preferences: LSP-typescript Settings
:
{
"settings": {
// Javascript inlay hints options.
"javascript.inlayHints.includeInlayEnumMemberValueHints": false,
"javascript.inlayHints.includeInlayFunctionLikeReturnTypeHints": false,
"javascript.inlayHints.includeInlayFunctionParameterTypeHints": false,
"javascript.inlayHints.includeInlayParameterNameHints": "none",
"javascript.inlayHints.includeInlayParameterNameHintsWhenArgumentMatchesName": false,
"javascript.inlayHints.includeInlayPropertyDeclarationTypeHints": false,
"javascript.inlayHints.includeInlayVariableTypeHints": false,
// Typescript inlay hints options.
"typescript.inlayHints.includeInlayEnumMemberValueHints": false,
"typescript.inlayHints.includeInlayFunctionLikeReturnTypeHints": false,
"typescript.inlayHints.includeInlayFunctionParameterTypeHints": false,
"typescript.inlayHints.includeInlayParameterNameHints": "none",
"typescript.inlayHints.includeInlayParameterNameHintsWhenArgumentMatchesName": false,
"typescript.inlayHints.includeInlayPropertyDeclarationTypeHints": false,
"typescript.inlayHints.includeInlayVariableTypeHints": false,
}
}
Note: Inlay hints require TypeScript 4.4+.
Usage in projects that also use Flow
TypeScript can check vanilla JavaScript, but may break on JavaScript with Flow types in it. To keep LSP-typescript enabled for TS and vanilla JS, while ignoring Flow-typed files, you must install JSCustom and configure it like so:
{
"configurations": {
"Flow": {
"scope": "source.js.flow",
"flow_types": true,
"jsx": true
}
}
}
Also install ApplySyntax and configure it like so:
{
"syntaxes": [
{
"syntax": "User/JS Custom/Syntaxes/Flow",
"match": "all",
"rules": [
{ "file_path": ".*\\.jsx?$" },
{ "first_line": "^/[/\\*] *@flow" }
]
}
]
}
And then configure LSP-typescript like so:
{
"selector": "source.js - source.js.flow, source.jsx, source.ts, source.tsx"
}
This works only on Sublime Text 4, and your project must have a // @flow
or /* @flow */
in each Flow-typed file. For more information, see this issue.