aboutsummaryrefslogtreecommitdiffstats
path: root/after/compiler/typescript.vim
blob: 362fc30e3820816cb70a1881374efa17cc191656 (plain)
1
2
3
4
5
6
7
" Run tsc on all files. The typescript.vim plugin only operates on the current
" file.
execute 'CompilerSet makeprg='
	\ . escape(g:typescript_compiler_binary, ' ')
	\ . '\ '
	\ . escape(g:typescript_compiler_options, ' ')
	\ . '\ $*'