{ "moduleFileExtensions": ["js", "json", "ts"], "rootDir": ".", "testEnvironment": "node", "testRegex": ".*\\.integration-spec\\.ts$", "transform": { "happy-dom.+\\.js$": [ "babel-jest", { "presets": [["@babel/preset-env", { "targets": { "node": "current" } }]] } ], "^.+\\.(t|j)s$": "ts-jest" }, "transformIgnorePatterns": [ "/node_modules/(?!(\\.pnpm/)?(nanoid|uuid|image-dimensions|marked|happy-dom)(@|/))" ], "moduleNameMapper": { "^@docmost/db/(.*)$": "/../src/database/$1", "^@docmost/transactional/(.*)$": "/../src/integrations/transactional/$1", "^@docmost/ee/(.*)$": "/../src/ee/$1", "^src/(.*)$": "/../src/$1", "^@docmost/base-formula/server$": "/../../../packages/base-formula/src/index.server.ts", "^@docmost/base-formula/client$": "/../../../packages/base-formula/src/index.client.ts" } }