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
Reproduces how often:
100% of the time
Versions
Atom 1.39.1 on macOS
ide-typescript 0.9.1
The text was updated successfully, but these errors were encountered:
As a temporary workaround you can install a newer version of the typescript language server globally (npm install -g typescript) and go into the extension settings for ide-typescript and change the language server path to where tsserver was installed. You can find where it is installed by typing in a terminal window which tsserver (which was /usr/bin/tsserver for me on Linux).
Prerequisites
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
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
Reproduces how often:
100% of the time
Versions
Atom 1.39.1 on macOS
ide-typescript 0.9.1
The text was updated successfully, but these errors were encountered: