mirror of
https://github.com/barthuijgen/factorio-sites.git
synced 2025-01-22 11:44:10 +02:00
15 lines
331 B
JavaScript
15 lines
331 B
JavaScript
|
module.exports = {
|
||
|
displayName: "database",
|
||
|
preset: "../../jest.preset.js",
|
||
|
globals: {
|
||
|
"ts-jest": {
|
||
|
tsConfig: "<rootDir>/tsconfig.spec.json",
|
||
|
},
|
||
|
},
|
||
|
transform: {
|
||
|
"^.+\\.[tj]sx?$": "ts-jest",
|
||
|
},
|
||
|
moduleFileExtensions: ["ts", "tsx", "js", "jsx"],
|
||
|
coverageDirectory: "../../coverage/libs/database",
|
||
|
};
|