1/** @type {import('ts-jest').JestConfigWithTsJest} */ 2module.exports = { 3 preset: "ts-jest", 4 testEnvironment: "node", 5 setupFiles: ["./test/setup.js"], 6 testMatch: ["**/?(*.)+(spec|test).ts?(x)"], 7 maxConcurrency: 1, 8}; 9 10