7 lines
197 B
JavaScript
7 lines
197 B
JavaScript
module.exports = {
|
|
roots: ['<rootDir>/src', '<rootDir>'],
|
|
testMatch: ['**/__tests__/**/*.+(ts|tsx|js)', '**/?(*.)+(spec|test).+(ts|tsx|js)'],
|
|
transform: {
|
|
'^.+\\.(ts|tsx)$': 'ts-jest',
|
|
},
|
|
};
|