7 lines
186 B
TypeScript
7 lines
186 B
TypeScript
import type { Config } from 'jest';
|
|
const { getJestProjectsAsync } = require('@nx/jest');
|
|
|
|
module.exports = async (): Promise<Config> => ({
|
|
projects: await getJestProjectsAsync(),
|
|
});
|