19 lines
369 B
JSON
19 lines
369 B
JSON
{
|
|
"moduleFileExtensions": ["ts", "js", "json"],
|
|
"rootDir": ".",
|
|
"testEnvironment": "node",
|
|
"preset": "ts-jest",
|
|
"transform": {
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
},
|
|
"testMatch": ["**/?(*.)+(spec|test).ts"],
|
|
"moduleNameMapper": {
|
|
"^@/(.*)$": "<rootDir>/src/$1"
|
|
},
|
|
"globals": {
|
|
"ts-jest": {
|
|
"tsconfig": "<rootDir>/tsconfig.json"
|
|
}
|
|
}
|
|
}
|