mirror of
https://github.com/directus/directus.git
synced 2026-01-13 12:18:24 -05:00
9 lines
251 B
JavaScript
9 lines
251 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
transform: {
|
|
"^.+\\.tsx?$": "ts-jest"
|
|
},
|
|
testRegex: "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
|
|
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"]
|
|
}; |