nx/packages/nx/jest.config.ts
2025-05-01 01:43:11 +04:00

13 lines
391 B
TypeScript

/* eslint-disable */
export default {
transform: {
'^.+\\.[tj]sx?$': ['ts-jest', { tsconfig: '<rootDir>/tsconfig.spec.json' }],
},
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'html'],
globals: {},
displayName: 'nx',
preset: '../../jest.preset.js',
// Ensure cargo insta snapshots do not get picked up by jest
testPathIgnorePatterns: ['<rootDir>/src/native/tui'],
};