jest.config.js 239 B

1234567891011
  1. /** @type {import('ts-jest').JestConfigWithTsJest} **/
  2. export default {
  3. testEnvironment: "node",
  4. transform: {
  5. "^.+\.tsx?$": ["ts-jest", {}],
  6. },
  7. preset: "ts-jest",
  8. moduleNameMapper: {
  9. '^@/(.*)$': '<rootDir>/src/$1'
  10. }
  11. };