mirror of
https://github.com/seejohnrun/haste-server
synced 2025-07-16 10:03:45 -07:00
12 lines
288 B
JavaScript
12 lines
288 B
JavaScript
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
rootDir: '../',
|
|
testRegex: '\\.test\\.ts$',
|
|
reporters: ['default'],
|
|
roots: ['test'],
|
|
moduleNameMapper: {
|
|
'src/(.*)': '<rootDir>/src/$1'
|
|
}
|
|
}
|