Ok typescript is javascript but with type checking.
First one can add typescript to neovim - vim-plug - coc ; i.e. coloring & completion.
Add to init.vim
In neovim perform : plug-install : coc-install
First one can add typescript to neovim - vim-plug - coc ; i.e. coloring & completion.
Add to init.vim
Code:
let g:coc_global_extensions = ['coc-tsserver', 'coc-json', 'coc-pyright', 'coc-sourcekit', 'coc-zig', 'coc-eslint', 'coc-prettier']
" 1. Alle Plugins in één blok
call plug#begin()
Plug 'leafgarland/typescript-vim'
Plug 'MaxMEllon/vim-jsx-pretty'
...
In neovim perform : plug-install : coc-install