UNPKG

251 BJavaScriptView Raw
1module.exports = {
2 preset: "ts-jest",
3 testEnvironment: "node",
4 transform: {
5 "^.+\\.[tj]sx?$": "ts-jest",
6 },
7 moduleFileExtensions: ["ts", "tsx", "js", "jsx"],
8 globals: { "ts-jest": { tsConfig: "<rootDir>/src/tsconfig.spec.json" } },
9};