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

12 lines
322 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: 'create-nx-plugin',
testEnvironment: 'node',
preset: '../../jest.preset.js',
};