From 251afaea02655f8c0df86b9d4c04f60f6ef5f70a Mon Sep 17 00:00:00 2001 From: Herrington Darkholme Date: Sat, 11 Apr 2015 13:06:16 +0800 Subject: [PATCH] fix typescript compiler emit output --- syntax_checkers/typescript/tsc.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax_checkers/typescript/tsc.vim b/syntax_checkers/typescript/tsc.vim index c469ec2fe..588bc36fa 100644 --- a/syntax_checkers/typescript/tsc.vim +++ b/syntax_checkers/typescript/tsc.vim @@ -19,7 +19,7 @@ set cpo&vim function! SyntaxCheckers_typescript_tsc_GetLocList() dict let makeprg = self.makeprgBuild({ \ 'args': '--module commonjs', - \ 'args_after': '--out ' . syntastic#util#DevNull() }) + \ 'args_after': '--noEmit'}) let errorformat = \ '%E%f %#(%l\,%c): error %m,' .