Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
at main 353 B view raw
1import * as url from 'url'; 2import * as path from 'path'; 3import { createRequire } from 'node:module'; 4 5const __dirname = path.dirname(url.fileURLToPath(import.meta.url)); 6export const workspaceRoot = path.resolve(__dirname, '../../../'); 7 8export const workspaces = ['packages/*', 'exchanges/*']; 9 10export const require = createRequire(import.meta.url);