functions-differ icon indicating copy to clipboard operation
functions-differ copied to clipboard

Using with firebase groups

Open alexpchin opened this issue 2 years ago • 1 comments

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.

alexpchin avatar Dec 14 '22 07:12 alexpchin

Any help on this would be much appreciated.

Within each folder, I export an object:

import someFunc from '/funcLocation';

export const verification = {
   someFunc
}

alexpchin avatar Dec 15 '22 07:12 alexpchin