mirror of
https://github.com/zhangxiangliang/stock-api.git
synced 2025-01-23 22:40:21 +08:00
14 lines
404 B
JSON
14 lines
404 B
JSON
{
|
|
"verbose": true,
|
|
"transform": {
|
|
"^.+\\.(t|j)sx?$": "ts-jest"
|
|
},
|
|
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
|
|
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"],
|
|
"moduleNameMapper": {
|
|
"^@stocks/(.*)$": "<rootDir>/src/stocks/$1",
|
|
"^@utils/(.*)$": "<rootDir>/src/utils/$1",
|
|
"^@interfaces/(.*)$": "<rootDir>/src/interfaces/$1"
|
|
}
|
|
}
|