nx/nx-plugin/jest.config.ts
2025-05-06 16:57:11 +00:00

7 lines
179 B
TypeScript

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