blob: e81ebd66db1c9c481de6cdbb703d7c792a75153e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
if exists("current_compiler")
finish
endif
let current_compiler = "typescript"
if !exists("g:typescript_compiler_options")
let g:typescript_compiler_options = ""
endif
let &l:makeprg='tsc' . g:typescript_compiler_options . ' $* %'
CompilerSet errorformat=%+A\ %#%f\ %#(%l\\\,%c):\ %m,%C%m
|