jest.config.js 321 B

12345678910111213
  1. /** @type {import('ts-jest').JestConfigWithTsJest} */
  2. module.exports = {
  3. preset: 'ts-jest',
  4. testEnvironment: 'node',
  5. esModuleInterop: true,
  6. // 指定ts config文件
  7. tsconfig: '<rootDir>/tsconfig.json',
  8. // 使用esm而非commonjs
  9. useESM: true,
  10. moduleNameMapper: {
  11. "^@/(.*)$": "<rootDir>/src/$1"
  12. }
  13. };