13 lines
184 B
JavaScript
13 lines
184 B
JavaScript
module.exports = {
|
|
transform: {
|
|
".ts": 'ts-jest'
|
|
},
|
|
testRegex: '.+\\.test\\.ts$',
|
|
testPathIgnorePatterns: [
|
|
"esm",
|
|
"lib",
|
|
"examples",
|
|
"node_modules"
|
|
]
|
|
};
|