mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 00:52:48 +00:00
8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
|
|
import type { JestConfigWithTsJest } from 'ts-jest'
|
||
|
|
|
||
|
|
const jestConfig: JestConfigWithTsJest = {
|
||
|
|
preset: 'ts-jest',
|
||
|
|
testEnvironment: 'node'
|
||
|
|
}
|
||
|
|
|
||
|
|
export default jestConfig
|