jest.config.js 231 B

12345678910111213141516
  1. module.exports = {
  2. roots: [
  3. '<rootDir>/src'
  4. ],
  5. transform: {
  6. '^.+\\.ts?$': 'ts-jest'
  7. },
  8. testRegex: '(\\.|/)(test|spec)\\.ts?$',
  9. moduleFileExtensions: [
  10. 'ts',
  11. 'js',
  12. 'jsx',
  13. 'json',
  14. 'node'
  15. ]
  16. }