You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let g:typescript_compiler_options = '--target ES5'
Then, when I try to :make, the compiler didn’t run and displayed those notices instead:
:!make 2>&1| tee /tmp/jdoe/v5YcHTT/7
make: *** No targets specified and no makefile found. Stop.
(1 of 1): make: *** No targets specified and no makefile found. Stop.
However, when I :set makeprg=tsc\ --target\ ES5\ $*\ %, the :make cmd works as expected.
EDIT: I’m also having those notices after commenting out the g:typescript_compiler_options definition.
N.B.: I’m also using the syntastic checker with let g:syntastic_typescript_tsc_args = '--target ES5' (which works fine). Could it be related?