14 lines
295 B
JSON
14 lines
295 B
JSON
{
|
|
"preset": "ts-jest",
|
|
"testEnvironment": "node",
|
|
"setupFiles": ["<rootDir>/jest.env.js"],
|
|
"moduleFileExtensions": ["ts", "js"],
|
|
"transform": {
|
|
"^.+\\.tsx?$": "ts-jest"
|
|
},
|
|
"testMatch": ["**/tests/**/*.test.ts"],
|
|
"moduleNameMapper": {
|
|
"^@/(.*)$": "<rootDir>/src/$1"
|
|
}
|
|
}
|