arehs
Version:
The arehs ensures the best possible large batch processing, which is oriented towards event-driven chunk processing.
12 lines (11 loc) • 331 B
JavaScript
/** @type {import("ts-jest").JestConfigWithTsJest} */
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
moduleFileExtensions: ['js', 'json', 'jsx', 'ts', 'tsx'],
testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$',
transform: {
'^.+\\.(ts|tsx)$': 'ts-jest'
},
roots: ['<rootDir>/test']
};