Replies: 2 comments
-
I recently have to change Having this changed in all templates would be great! |
Beta Was this translation helpful? Give feedback.
0 replies
-
Fixed in #6949 |
Beta Was this translation helpful? Give feedback.
0 replies
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.
-
The current default of "node" is really for node 11 and earlier. The "node" setting doesn't work correctly with packages using subpath exports.
Having the default
tsconfig.json
setting"moduleResolution": "node16"
or"moduleResolution": "bundler"
(new in TypeScript v5) will get new users on the right track sooner.See microsoft/TypeScript#50794 and https://devblogs.microsoft.com/typescript/announcing-typescript-5-0/#moduleresolution-bundler for more details.
Beta Was this translation helpful? Give feedback.
All reactions