var-persist/jest.config.js
2023-12-19 22:32:47 -05:00

17 lines
267 B
JavaScript

module.exports = {
"reporters": ["default", "jest-junit"],
"roots": [
"<rootDir>/tests"
],
"testMatch": [
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
".+\\.(ts)$": "ts-jest"
},
collectCoverageFrom: [
'src/**/*.ts',
'!src/**/*.d.ts'
],
};