ts-sdk

jest.config.js 201B

12345678
  1. module.exports = {
  2. transform: {
  3. '^.+\\.tsx?$': 'ts-jest',
  4. },
  5. testRegex: '(/test/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$',
  6. moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
  7. };