Regarding the typescript6 compatibility package, typescript native preview and the vs code extensions #3579
Unanswered
Simen Wiik (revosw)
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
This is my understanding after reading the beta announcement blog post and browsing node_modules.
Typescript native preview (which I have been using since december) includes the
tsgo.exeexecutable. There is a companion vs code extension, typescript native preview, that I think hardcodes to usetsgo.exe. The reason I assume that is because the native preview npm package does not have its own tsserver.exe, which I assume is specifically for the language server.The typescript6 package includes
tsc.exe(typescript 7),tsc6.exe(typescript 6) andtsserver.exe. My question is, can I uninstall both the@typescript/native-previewnpm package and the typescript native preview vs code extension, and go back to using the regular typescript package?In other words, is it correct to assume that this is the timeline?
Before native was introduced:
npm i typescriptWhen native was introduced:
npm i @typescript/native-previewNow with the compatibility package
"typescript": "npm:@typescript/typescript6@^6.0.0"in package.json@typescript/native-previewAll reactions