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
I have an issue using typescript-vim with the typescript code containing decorators.
When I save file, I'm getting error:
error| TS1205: Decorators are only available when targeting ECMAScript 5 and higher.
I added let g:typescript_compiler_options = '-t ES5 --module commonjs' to my vimrc, but it does not help. When I run :make it works fine fine without errors, however.
Could you point me on what I'm missing?
P.S. I'm also using syntastic-async for pretty errors display.