10 lines
191 B
TypeScript
10 lines
191 B
TypeScript
|
import type { Config } from "@jest/types";
|
||
|
// Sync object
|
||
|
const config: Config.InitialOptions = {
|
||
|
verbose: true,
|
||
|
transform: {
|
||
|
"^.+\\.tsx?$": "ts-jest",
|
||
|
},
|
||
|
};
|
||
|
export default config;
|