17 lines
278 B
TypeScript
17 lines
278 B
TypeScript
|
|
export default {
|
|
roots: ['<rootDir>/src'],
|
|
transform: {
|
|
'^.+\\.tsx?$': 'ts-jest',
|
|
},
|
|
testRegex: '(\\.|/)(test|spec)\\.tsx?$',
|
|
moduleFileExtensions: [
|
|
'ts',
|
|
'tsx',
|
|
'js',
|
|
'jsx',
|
|
'json',
|
|
'node',
|
|
],
|
|
}
|