pyright/jest.config.js
2019-03-11 20:45:56 -07:00

26 lines
350 B
JavaScript

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