@soketi/soketi
Version:
Just another simple, fast, and resilient open-source WebSockets server.
17 lines (16 loc) • 383 B
JavaScript
module.exports = {
transform: {
'^.+\\.tsx?$': 'ts-jest',
},
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
testTimeout: 20 * 1000,
collectCoverage: true,
maxWorkers: 1,
testRunner: 'jest-circus/runner',
globals: {
'ts-jest': {
isolatedModules: true,
},
Uint8Array: Uint8Array,
},
};