and-end/obibok

View on GitHub
jest.config.base.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  moduleFileExtensions: [
    "ts",
    "tsx",
    "js",
    "jsx",
    "json",
    "node"
  ],
  projects: [
    "<rootDir>"
  ],
  transform: {
    ".*(ts|tsx)$": "ts-jest"
  },
  collectCoverage: true,
  coveragePathIgnorePatterns: [
      "(.*.mock).(jsx?|tsx?)$"
  ]
};