We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
TypeScript 5.0 now looks into the exports field of package.json when resolving the extended files, but esbuild doesn't appear to do so. Example:
{ "extends": "@whatever/tsconfig/node" }
{ "name": "@whatever/tsconfig", "exports": { "./node": "./tsconfig.node.json" } }
will emit this warning:
▲ [WARNING] Cannot find base config file "@whatever/tsconfig/node" [tsconfig.json] tsconfig.json:2:13: 2 │ "extends": "@whatever/tsconfig/node",
The text was updated successfully, but these errors were encountered:
8eb364d
No branches or pull requests
TypeScript 5.0 now looks into the exports field of package.json when resolving the extended files, but esbuild doesn't appear to do so.
Example:
will emit this warning:
The text was updated successfully, but these errors were encountered: