mirror of
https://github.com/barthuijgen/factorio-sites.git
synced 2025-01-10 23:29:26 +02:00
15 lines
333 B
JavaScript
15 lines
333 B
JavaScript
module.exports = {
|
|
displayName: "web-utils",
|
|
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/web-utils",
|
|
};
|