nx/packages/create-nx-plugin/jest.config.ts

11 lines
301 B
TypeScript

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