mirror of
https://github.com/status-im/packages-check-bot.git
synced 2025-02-22 09:08:22 +00:00
9 lines
243 B
JavaScript
9 lines
243 B
JavaScript
module.exports = {
|
|
roots: ['<rootDir>/src/', '<rootDir>/test/'],
|
|
transform: {
|
|
'^.+\\.tsx?$': 'ts-jest'
|
|
},
|
|
testRegex: '(/__tests__/.*|\\.(test|spec))\\.[tj]sx?$',
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node']
|
|
}
|