Javascript-Library/jest.config.ts

12 lines
199 B
TypeScript
Raw Normal View History

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