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