18 lines
432 B
JSON
18 lines
432 B
JSON
{
|
|
"transform": {
|
|
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
|
|
},
|
|
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"tsx",
|
|
"js",
|
|
"jsx",
|
|
"json"
|
|
],
|
|
"testPathIgnorePatterns": ["<rootDir>/common/config"],
|
|
"setupFiles": ["<rootDir>/jest_config/setupJest.js"],
|
|
"automock": false,
|
|
"moduleDirectories": ["node_modules", "common"]
|
|
}
|