9 lines
236 B
JavaScript
9 lines
236 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
testPathIgnorePatterns: ['<rootDir>/test/fixtures'],
|
|
coveragePathIgnorePatterns: ['<rootDir>/test/'],
|
|
moduleNameMapper: {
|
|
'^(\\.{1,2}/.*)\\.js$': '$1',
|
|
},
|
|
}; |