Coolify MCP Server

by StuMason
Verified
/** @type {import('ts-jest').JestConfigWithTsJest} */ export default { preset: 'ts-jest', testEnvironment: 'node', moduleNameMapper: { '^(\\.{1,2}/.*)\\.js$': '$1', }, transform: { '^.+\\.tsx?$': [ 'ts-jest', { useESM: true, }, ], }, extensionsToTreatAsEsm: ['.ts'], testPathIgnorePatterns: ['/node_modules/', '/dist/', '\\.d\\.ts$'], };