18 lines
474 B
JSON
18 lines
474 B
JSON
{
|
|
"moduleFileExtensions": ["js", "json", "ts"],
|
|
"rootDir": ".",
|
|
"testEnvironment": "node",
|
|
"testRegex": ".e2e-spec.ts$",
|
|
"transform": {
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
},
|
|
"moduleNameMapper": {
|
|
"^@workspace/schema$": "<rootDir>/__mocks__/schema.ts",
|
|
"^@workspace/schema/migrations$": "<rootDir>/__mocks__/schema-migrations.ts",
|
|
"^valibot$": "<rootDir>/__mocks__/valibot.ts"
|
|
},
|
|
"transformIgnorePatterns": [
|
|
"node_modules/(?!@workspace)"
|
|
]
|
|
}
|