11 lines
227 B
JavaScript
11 lines
227 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} **/
|
|
module.exports = {
|
|
testEnvironment: "node",
|
|
transform: {
|
|
"^.+\.tsx?$": ["ts-jest",{}],
|
|
},
|
|
testPathIgnorePatterns: [
|
|
"node_modules/",
|
|
"generated/"
|
|
]
|
|
}; |