15 lines
273 B
JavaScript
15 lines
273 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
testPathIgnorePatterns: ['/dist/', '/node_modules/'],
|
|
globals: {
|
|
transform: {
|
|
'*': [
|
|
'ts-jest',
|
|
{
|
|
diagnostics: { warnOnly: true },
|
|
},
|
|
],
|
|
},
|
|
},
|
|
};
|