9 lines
157 B
JavaScript
9 lines
157 B
JavaScript
module.exports = {
|
|
testEnvironment: 'node',
|
|
roots: ['<rootDir>/test'],
|
|
testMatch: ['**/*.test.ts'],
|
|
transform: {
|
|
'^.+\\.tsx?$': 'ts-jest'
|
|
}
|
|
};
|