nx/packages/jest/index.ts
Leosvel Pérez Espinosa 9ae691ede8
feat(testing): remove tsConfig option from the @nx/jest:jest executor (#30888)
Removes the previously deprecated and unused `tsConfig` option from the
`@nx/jest:jest` executor.

BREAKING CHANGE: The previously deprecated and unused `tsConfig` option
from the `@nx/jest:jest` executor was removed.
2025-04-29 11:08:59 -04:00

17 lines
675 B
TypeScript

import { configurationGenerator } from './src/generators/configuration/configuration';
export { configurationGenerator };
// Exported for backwards compatibility in case a plugin is using the old name.
/**
* @deprecated Use `configurationGenerator` instead. It will be removed in Nx v22.
*/
export const jestProjectGenerator = configurationGenerator;
export {
addPropertyToJestConfig,
removePropertyFromJestConfig,
} from './src/utils/config/update-config';
export { jestConfigObjectAst } from './src/utils/config/functions';
export { jestInitGenerator } from './src/generators/init/init';
export { getJestProjectsAsync } from './src/utils/config/get-jest-projects';