mirror of
https://github.com/toptal/haste-server.git
synced 2024-11-29 13:05:36 +01:00
9 lines
206 B
JavaScript
9 lines
206 B
JavaScript
|
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
|
||
|
module.exports = {
|
||
|
preset: 'ts-jest',
|
||
|
testEnvironment: 'node',
|
||
|
rootDir: './',
|
||
|
testRegex: '\\.test\\.ts$',
|
||
|
reporters: ['default']
|
||
|
}
|