Javascript-Library/jest.config.ts

12 lines
197 B
TypeScript
Raw Permalink Normal View History

2024-04-19 19:39:30 +00:00
import {Config} from "jest";
2024-04-14 20:11:46 +00:00
// Sync object
const config: Config = {
verbose: true,
testMatch: ["**/test/**/*.ts"],
transform: {
"^.+\\.tsx?$": "ts-jest",
},
};
export default config;