@epicgames-ps/lib-pixelstreamingfrontend-ue5.4
Version:
Frontend library for Unreal Engine 5.4 Pixel Streaming
19 lines (18 loc) • 405 B
JavaScript
module.exports = {
preset: "ts-jest/presets/js-with-ts",
testEnvironment: "jsdom",
transform: {
"^.+\\.tsx?$": [
"ts-jest",
{
tsconfig: "tsconfig.jest.json",
},
],
},
modulePathIgnorePatterns: ["<rootDir>/build/"],
testPathIgnorePatterns: ["<rootDir>/build/", "/node_modules/"],
globals: {
TextDecoder: TextDecoder,
TextEncoder: TextEncoder,
}
};