pashto-inflector/jest.config.js

15 lines
291 B
JavaScript
Raw Normal View History

2024-08-12 19:48:31 +00:00
/** @type {import('ts-jest').JestConfigWithTsJest} **/
export default {
testEnvironment: "node",
transform: {
"^.+.tsx?$": [
"ts-jest",
{
tsconfig: "tsconfig.app.json",
diagnostics: false,
2024-08-12 19:48:31 +00:00
},
],
},
setupFilesAfterEnv: ["./testSetup.ts"],
};