hkts
Version:
A simple encoding of higher-kinded types in TypeScript
16 lines (15 loc) • 325 B
JavaScript
module.exports = {
clearMocks: true,
coverageDirectory: 'coverage',
globals: {
'ts-jest': {
tsConfigFile: 'tsconfig.json',
},
},
moduleFileExtensions: ['ts', 'tsx', 'js'],
testEnvironment: 'node',
testMatch: ['<rootDir>/src/**/*.spec.ts'],
transform: {
'^.+\\.(ts|tsx)$': 'ts-jest',
},
};