mirror of
https://github.com/jzillmann/pdf-to-markdown.git
synced 2024-11-21 23:33:31 +01:00
13 lines
349 B
JavaScript
13 lines
349 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
roots: ['./test'],
|
|
testRegex: '(/test/.*|(\\.|/))(test)\\.(ts)$',
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
|
|
moduleNameMapper: {
|
|
'src/(.*)': '<rootDir>/src/$1',
|
|
'test/(.*)': '<rootDir>/test/$1',
|
|
},
|
|
transform: { '\\.ts$': ['ts-jest'] },
|
|
};
|