-
Notifications
You must be signed in to change notification settings - Fork 12.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Concerns with TypeScript 4.5's Node 12+ ESM Support #46452
Comments
I think this issue is a good example for the long needed plugin (hook) system. The Solution to the first 2 Problems is rollup at present you can use it with plugin typescript to resolve anything correct and then inject it into the typescript program. i am already researching how i could maintain and release a typescript-rollup version which would be typescript + rollup hooks and plugins. Conclusiona Plugin/Hook System is the Solution for the Resolve Problem. The Only one that is flexible and adjustable enough to cover every case. |
There is already a hooks system built into package.json... it's bad, but the whole point is to get rid of it as soon as dependencies merge the PR's to fix the issues. I have the following install hook as a bandaid while upstream applies the fixes to default imports and reachable types/modules.
I'd rather have 4.5 stable sooner, than to wait for yet another workaround. |
@rayfoss we can take your example to again show that a plugin/hook system like the one from rollup is badly neeeded. you mixed linux shell script into your package.json as workaround. |
Yeah, so the trouble is if TypeScript doesn't encourage the use of This is something I've mentioned in the past on some related issue, but has it been considered not to have a distinct By having both |
This seems like the absolute worst conclusion to ever reach. I'm really sorry for butting in on this issue as not a huge avid typescript users but the one thing I like about typescript is precisely it doesn't require 9001 packages like soo many other builders and bundlers to actually get into a working state. Typescript is standalone that just-works and doesn't require the end programmer to have to build-their-own-compiler themselves. Add plugins is just gonna be that, making it more and more complicated while adding nothing really. Especially something like this issue that REALLY needs to work out of the box but isn't. And saying to people "oh you're using typescript but typescript is dumb like bundlers, you need to hook plugins to get it working" is something you don't want to say to developers or people. I really strongly advice against any case of adding plugins to this package. If it doesn't work, we can fix it. If it works, why would you need a plugin just to make configging even more complicated? Best regards: P.S. |
@TheThing in my case it is simply needed because there are many package authors with total diffrent opinions and i do not want to get blocked by them. I also do not want to hardfork everything and so on. The only Alternativ to a plugin system in typescript is the usage of dev bundels that are typescript compatible. also my conclusion is driven from the fact that there are tons of other environments not only nodejs i only vote for resolve hooks and plugins because of all the diffrent environments as also package managers. |
What about removing Node12 and starts from Node 14? |
One note here from https://github.com/microsoft/TypeScript/issues/46550#issuecomment-954348769—for users who have declaration emit enabled, error messages like this are probably going to be a common symptom of a dependency that needs to update their export map to include
It feels pretty non-obvious that that’s what’s going on so I wanted to make a note of it here. Basically, the declaration emitter wants to print a type like |
☝️ Actually, I was wrong about this particular example. This may be a common symptom for some packages if their typings are stored in a separate folder from the JS that the export maps point to, like RxJs does. However, if the |
Oh. Yes, I found that package actually exports the correct typing and JS file at |
There are some rough edges with the new resolution mode. I've been trying out this mode for two weeks. The main issues I've hit are:
Despite all of these issues, I still hope that the new resolution algorithm becomes available on stable TypeScript: the core seems good and bugs/UX can be iterated. The new resolution mode lets me get rid of tons hacks and makes it finally ergonomic to use ESM natively.
I was able to use In my personal experience, all of these improvements strongly outweight the current issues: it makes things so much simpler as it realigns TS behavior's with Node's. I hope that the current issues get fixed soon and I hope that the concerns will not delay the new resolution too much. |
I wanted to link the issue I've double checked my message: I linked it as |
To align with `tsc` default behavior, mentioned in microsoft/TypeScript#46452 Fixes vitejs#3040
What if TypeScript 5 assumes It would be regrettable if we have to add |
Just to be clear it is Node (not TypeScript) that requires |
at present i think the type fild in the package.json is less relevant as that is only a switch for the .js extension inside NodeJs Typescript at present 4.5+ detects the module type via Typescript is not a NodeJS only Product at last i guess that. ps i still have Javascript Projects without a package.json at all and i use the global installed typescript to typecheck them it works great and it should stay working. |
For folks who are interested in testing esm-node out: npm add typescript@4.5.0-dev.20211101--save-dev
yarn add typescript@4.5.0-dev.20211101 --dev
pnpm add typescript@4.5.0-dev.20211101 --dev This is the closest nightly npm release to the RC, so can act as "4.5 but with ESM enabled" for your projects. |
For TypeScript 4.5, we've added a new module mode called
node12
to better-support running ECMAScript modules in Node.js. Conceptually, the feature is simple - for whatever Node.js does, either match it or overlay something TypeScript-specific that mirrors thes same functionality. This is what TypeScript did for our initial Node.js support (i.e.--moduleResolution node
and--module commonjs
); however, the feature is much more expansive, and over the past few weeks, a few of us have grown a bit concerned about the complexity.I recently put together a list of user scenarios and possibly useful scripts for a few people on the team to run through, and we found a few sources of concerns.
Bugs
Most complex software ships with a few bugs. Obviously, we want to avoid them, but the more complex a feature is, the harder it is to cover all the use-cases. As we get closer to our RC date, do we feel confident that what we're shipping has as few blocking bugs as possible?
I would like to say we're close, but the truth is I have no idea. It feels like we'll have to keep trying the features for a bit until we don't run into anything - but we have less than 3 weeks before the RC ships.
Here's a few surprising bugs that need to get fixed before I would feel comfortable shipping
node12
in stable.resolveJsonModule
can't be used withnode12
: Typescript 4.5 resolveJsonModule should also work with node12 and nodenext module and resolveTypes #46362.ts
and.tsx
files innode12
(unfiled, reported by @andrewbranch)package.json
changes in packages not tracked (unfiled, reported by @DanielRosenwasser)UX Concerns
In addition to bugs we found, there are just several UX concerns. Package authoring is already a source of confusion in the TypeScript ecosystem. It's too easy to accidentally shoot yourself in the foot as a package author, and it's too hard to correctly consume misconfigured packages. The
node12
mode makes this a whole lot worse. Two filed examples of user confusion:"moduleResolution": "node12"
of Typescript 4.5 does not work as expected #46408export
field is confusing to configure and diagnose: Surprising (or incorrect) priorities with package.json exports fields? #46334While there might be a lot of "working as intended" behavior here, the question is not about whether it works, but how it works - how do we tell users when something went wrong. I think the current implementation leaves a lot of room for some polish.
But there are some questions about this behavior, and we've had several questions about whether we can simplify it. One motivating question I have is:
When a user creates a new TypeScript project with this mode, when would they not want
"type": "module"
? Why? Should that be required by default?We've discussed this a bit, and it seems a bit strange that because we want to cover the "mixed mode" case so much, every Node 12+ user will have to avoid this foot-gun.
I would like to see a world where we say "under this mode,
.ts
files must be covered by a"type": "module"
"..cts
can do their own CommonJS thing, but they need to be in a.cts
file.Another motivating question is:
Why would I use
node12
today instead ofnodenext
?Node 14.8 added top-level
await
, but Node 12 doesn't have it. I think this omission is enough of a wart that starting at Node 12 is the wrong move.Ecosystem
The ecosystem is CONFUSING here. Here's a taste of what we've found:
.js
extensions, but TypeScript expects them. Not all of these can be configured with a plugin..ts
extensions, but TypeScript doesn't allow them!export
fields, but don't have atypes
sub-field withinexport
(e.g. RxJS, Vue 3).export
fields, but their@types
package might not reflect that.The last two can be easily fixed over time, though it would be nice to have the team pitch in and help prepare a bit here, especially because it's something that affects our tooling for JavaScript users as well (see #46339)
However, the first two are real issues with no obvious solutions that fall within our scope.
There's also other considerations like "what about import maps?" Does TypeScript ever see itself leveraging those in some way, and will package managers ever support generating them?
Guidance
With
--moduleResolution node
, it became clear over time that everyone should use this mode. It made sense for Node.js apps/scripts, and it made sense for front-end apps that were going to go through a bundler. Even apps that didn't actually load fromnode_modules
could take advantage of@types
in a fairly straightforward way.Now we have an ecosystem mismatch between Node.js and bundlers. No bundler is compatible with this new TypeScript mode (and keep in mind, back-end code also occasionally uses a bundler).
Here's some questions I wouldn't know how to answer confidently:
node12
ornodenext
?"type": "module"
- should we always recommend.mts
?Next Steps
I see us having 3 options on the table:
The text was updated successfully, but these errors were encountered: