mirror of
https://github.com/barthuijgen/factorio-sites.git
synced 2025-01-21 11:41:56 +02:00
16 lines
361 B
JavaScript
Vendored
16 lines
361 B
JavaScript
Vendored
/* eslint-disable no-undef */
|
|
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",
|
|
};
|