pyright/jest.config.js

26 lines
350 B
JavaScript
Raw Normal View History

2019-03-12 06:45:56 +03:00
/*
* 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'
]
}