aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cli/scripts/templates/jest.config.js
blob: 05483066e69d817c14583a3c597a78c5cc1633ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module.exports = {
  roots: ["<rootDir>/src"],
  transform: {
    "^.+\\.tsx?$": "ts-jest",
  },
  // testRegex: '(/__tests__/.*(\\.|/)(test|spec))\\.tsx?$',
  moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"],
  modulePathIgnorePatterns: ["<rootDir>/src/__fixtures__"],
  preset: "ts-jest",
};