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
{{ message }}
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
Checked that there is not already an Atom package that provides the described functionality: https://atom.io/packages
Description
I tried to use a typescript feature that resulted in an error. Upon further research I realized its because this package uses typescript 3.1.6 and the feature I want got added in typescript 3.4.
Can we upgrade the version of typescript this package uses?
Steps to Reproduce
create a file with a typescript const. Something like
constfoo={bar: 'baz',hello: 'world'}asconst
Notice an error pops up saying Cannot find name "const"
Expected behavior:
No error should occur. This is now a standard feature of typescript.
Actual behavior:
An error is occuring on perfectly valid typescript