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
according to this SO post it means the typescript version is outdated. I am currently using message TS6029: Version 1.5.0-beta and compiling with tsc works fine.
It also blows up when using let
let script : HTMLScriptElement = document.createElement('script');
where var works fine
var script : HTMLScriptElement = document.createElement('script');
Which makes me think this gem is using an older version of typescript, or mine is pointing to the wrong one.
The text was updated successfully, but these errors were encountered:
I've found possible solution for our problems. Repository `typescript-ruby-src' that uses local TS node module instead of internal one. It's only pull request since original author seems to abandon repo.
If I include jquery.d.ts I get a tonne of unexpected errors:
according to this SO post it means the typescript version is outdated. I am currently using
message TS6029: Version 1.5.0-beta
and compiling with tsc works fine.It also blows up when using let
where var works fine
Which makes me think this gem is using an older version of typescript, or mine is pointing to the wrong one.
The text was updated successfully, but these errors were encountered: