pashto-dictionary/website/jest.config.js

14 lines
264 B
JavaScript
Raw Normal View History

2024-08-14 19:30:10 +00:00
/** @type {import('ts-jest').JestConfigWithTsJest} **/
export default {
testEnvironment: "node",
transform: {
"^.+.tsx?$": [
"ts-jest",
{
tsconfig: "tsconfig.app.json",
},
],
},
setupFilesAfterEnv: ["./setupTests.ts"],
};