Skip to content

Instantly share code, notes, and snippets.

@h-michael
h-michael / file0.vim
Last active September 18, 2016 10:45
Neomakeでtscを使う際にprojectのtsconfigを使うようにする設定 ref: http://qiita.com/h-michael/items/1d2744186811518f4454
let g:neomake_typescript_tsc_maker = {
\ 'args': [
\ '--project', getcwd(), '--noEmit'
\ ],
\ 'append_file': 0,
\ 'errorformat':
\ '%E%f %#(%l\,%c): error %m,' .
\ '%E%f %#(%l\,%c): %m,' .
\ '%Eerror %m,' .
\ '%C%\s%\+%m'