mirror of
https://github.com/ferdikoomen/openapi-typescript-codegen.git
synced 2025-12-08 20:16:21 +00:00
18 lines
373 B
JavaScript
18 lines
373 B
JavaScript
module.exports = {
|
|
testRegex: '\\.spec\\.tsx?$',
|
|
testEnvironment: 'node',
|
|
transform: {
|
|
'\\.tsx?$': 'ts-jest'
|
|
},
|
|
globals: {
|
|
'ts-jest': {
|
|
compiler: 'typescript',
|
|
tsConfig: {
|
|
declaration: false,
|
|
declarationMap: false,
|
|
sourceMap: false
|
|
}
|
|
}
|
|
}
|
|
};
|