nx/packages/js/jest.config.ts
2022-08-12 16:10:56 -04:00

12 lines
310 B
TypeScript

/* eslint-disable */
export default {
transform: {
'^.+\\.[tj]sx?$': 'ts-jest',
},
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'html'],
globals: { 'ts-jest': { tsconfig: '<rootDir>/tsconfig.spec.json' } },
displayName: 'jest',
testEnvironment: 'node',
preset: '../../jest.preset.js',
};