stock-api/jestconfig.json

13 lines
384 B
JSON
Raw Normal View History

2020-07-21 16:53:37 +08:00
{
"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"
}
2020-07-21 16:53:37 +08:00
}