nx/packages/create-nx-plugin/jest.config.ts
2022-04-23 18:06:01 +00:00

11 lines
303 B
TypeScript

module.exports = {
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.ts',
};