Javascript-Library/jest.config.ts
Liam db98cf20a1
All checks were successful
Publish Package / build (push) Successful in 19s
fix cache import
2024-04-19 20:39:30 +01:00

12 lines
197 B
TypeScript

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