15 lines
259 B
JavaScript
15 lines
259 B
JavaScript
module.exports = {
|
|
globals: {},
|
|
moduleFileExtensions: ["ts", "js"],
|
|
transform: {
|
|
"^.+\\.(ts|tsx)$": [
|
|
"ts-jest",
|
|
{
|
|
tsconfig: "tsconfig.json",
|
|
},
|
|
],
|
|
},
|
|
testMatch: ["**/*.test.(ts|js)"],
|
|
testEnvironment: "node",
|
|
};
|