kindring 9 bulan lalu
induk
melakukan
31df2c4476
1 mengubah file dengan 13 tambahan dan 0 penghapusan
  1. 13 0
      jest.config.js

+ 13 - 0
jest.config.js

@@ -0,0 +1,13 @@
+/** @type {import('ts-jest').JestConfigWithTsJest} */
+module.exports = {
+  preset: 'ts-jest',
+  testEnvironment: 'node',
+  esModuleInterop: true,
+  // 指定ts config文件
+  tsconfig: '<rootDir>/tsconfig.json',
+  // 使用esm而非commonjs
+  useESM: true,
+  moduleNameMapper: {
+    "^@/(.*)$": "<rootDir>/src/$1"
+  }
+};