2024-04-29 06:32:14 +00:00
|
|
|
const { compilerOptions } = require('./tsconfig.json');
|
|
|
|
const { pathsToModuleNameMapper } = require('ts-jest');
|
|
|
|
const esModules = ['lodash-es', 'nanoid'].join('|');
|
|
|
|
|
|
|
|
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
|
|
module.exports = {
|
|
|
|
preset: 'ts-jest',
|
|
|
|
testEnvironment: 'node',
|
|
|
|
roots: ['<rootDir>'],
|
|
|
|
modulePaths: [compilerOptions.baseUrl],
|
|
|
|
moduleNameMapper: {
|
|
|
|
...pathsToModuleNameMapper(compilerOptions.paths),
|
|
|
|
'^lodash-es(/(.*)|$)': 'lodash$1',
|
|
|
|
'^nanoid(/(.*)|$)': 'nanoid$1',
|
|
|
|
},
|
|
|
|
'transform': {
|
|
|
|
'(.*)/node_modules/nanoid/.+\\.(j|t)sx?$': 'ts-jest',
|
|
|
|
},
|
|
|
|
'transformIgnorePatterns': [`/node_modules/(?!${esModules})`],
|
2024-06-03 03:20:45 +00:00
|
|
|
testMatch: ['**/*.test.ts'],
|
|
|
|
coverageDirectory: '<rootDir>/coverage/jest',
|
|
|
|
collectCoverage: true,
|
2024-04-29 06:32:14 +00:00
|
|
|
};
|