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
I'm trying to get the project to work with firebase groups, where my index file exports like this:
export * from '@app/verification'; export * from '@app/xero'; export * from '@app/zendesk';
Any tips on how to achieve this?
I've tried not using an alias, e.g.:
export * from './verification'; export * from './xero'; export * from './zendesk';
But still no dice.
The text was updated successfully, but these errors were encountered:
Any help on this would be much appreciated.
Within each folder, I export an object:
import someFunc from '/funcLocation'; export const verification = { someFunc }
Sorry, something went wrong.
No branches or pull requests
I'm trying to get the project to work with firebase groups, where my index file exports like this:
Any tips on how to achieve this?
I've tried not using an alias, e.g.:
But still no dice.
The text was updated successfully, but these errors were encountered: