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
In #672 we removed a number of barrel files. While this is more performant, we are now appending /src/ to a bunch of imports:
/src/
import { createChannelTransport } from '@penumbra-zone/transport-dom/src/create';
It would be nice to be able to drop this and have:
import { createChannelTransport } from '@penumbra-zone/transport-dom/create';
Also, this is largely not an issue with external code imports as they can do:
"exports": { ".": "./dist/prax.js", "./global": "./dist/global.js", "./get-port": "./dist/get-port.js" }
However, doing like so with internal code renders a type error
"exports": { ".": "./src/prax.ts", "./global": "./src/global.ts", "./get-port": "./src/get-port.ts" }
The text was updated successfully, but these errors were encountered:
this can be handled by publishConfig
Sorry, something went wrong.
there's actually a couple of these left, have some local work on it
turbocrime
No branches or pull requests
In #672 we removed a number of barrel files. While this is more performant, we are now appending
/src/
to a bunch of imports:It would be nice to be able to drop this and have:
Also, this is largely not an issue with external code imports as they can do:
However, doing like so with internal code renders a type error
The text was updated successfully, but these errors were encountered: