jest.config.js (16 lines of code) (raw):
module.exports = {
"roots": [
"<rootDir>/src"
],
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"collectCoverageFrom": [
'src/**/*.{js,ts}',
'!**/node_modules/**',
],
}