neet/minazuki

View on GitHub
jest.config.json

Summary

Maintainability
Test Coverage
{
  "transform": {
    "^.+\\.tsx?$": "ts-jest"
  },
  "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
  "testEnvironment": "node",
  "testPathIgnorePatterns": [
    "/node_modules/",
    "<rootDir>/dist/"
  ],
  "moduleFileExtensions": [
    "ts",
    "tsx",
    "js",
    "jsx",
    "json",
    "node"
  ],
  "collectCoverageFrom": [
    "src/**/*.{ts,tsx}"
  ],
  "coveragePathIgnorePatterns": [
    ".*\\.d\\.ts"
  ],
  "coverageDirectory": "<rootDir>/coverage"
}