Skip to content

Instantly share code, notes, and snippets.

@craigp
Last active February 29, 2016 13:54
Show Gist options
  • Save craigp/9276fb009d45670013a6 to your computer and use it in GitHub Desktop.
Save craigp/9276fb009d45670013a6 to your computer and use it in GitHub Desktop.
Configuring tsc for typescript in vim (from https://github.com/benekastah/neomake/issues/244)

@HerringtonDarkholme I had forgotten about this issue. I had resolved it by doing exactly as you suggested, reading the docs ;)

For anyone else with this question, here is an example of a custom setup:

let g:neomake_typescript_tsc_maker = {
      \ 'args': [
      \ '-m', 'commonjs', '--noEmit', '--target', 'ES5', '--experimentalDecorators'
      \ ],
      \ 'errorformat':
      \ '%E%f %#(%l\,%c): error %m,' .
      \ '%E%f %#(%l\,%c): %m,' .
      \ '%Eerror %m,' .
      \ '%C%\s%\+%m'
      \ }

And you would just call the maker as usual

let g:neomake_typescript_enabled_makers = ['tsc']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment