jestconfig.json 245 B

12345678
  1. {
  2. "transform": {
  3. "^.+\\.(t|j)sx?$": "ts-jest"
  4. },
  5. "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
  6. "moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"],
  7. "transformIgnorePatterns": ["/node_modules/"]
  8. }