functions-differ
functions-differ copied to clipboard
Using with firebase groups
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.
Any help on this would be much appreciated.
Within each folder, I export an object:
import someFunc from '/funcLocation';
export const verification = {
someFunc
}