/* * jest.config.js * * Configuration for jest tests. */ module.exports = { 'roots': [ '/src', '/tests' ], 'transform': { '^.+\\.tsx?$': 'ts-jest' }, 'testRegex': '(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$', 'moduleFileExtensions': [ 'ts', 'tsx', 'js', 'jsx', 'json', 'node' ] }