Files
library/jest.config.ts
2026-02-03 10:09:37 -08:00

7 lines
179 B
TypeScript

import type { Config } from 'jest';
import { getJestProjectsAsync } from '@nx/jest';
export default async (): Promise<Config> => ({
projects: await getJestProjectsAsync(),
});