You've already forked factorio-sites
mirror of
https://github.com/barthuijgen/factorio-sites.git
synced 2026-06-19 01:11:22 +02:00
15 lines
333 B
JavaScript
Vendored
15 lines
333 B
JavaScript
Vendored
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",
|
|
};
|