{
  "preset": "ts-jest",
  "transform": { "^.+\\.tsx?$": "ts-jest" },
  "testRegex": "\\.(test|spec)\\.tsx?$",
  "moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"],
  "modulePaths": ["<rootDir>"],
  "testEnvironment": "node",
  "moduleNameMapper": {
    "^(\\.\\.?\\/.+)\\.js$": "$1",
    "^@apic/studio-shared": "<rootDir>/../studio-shared/dist" 
  },
  "coverageReporters": ["lcov", "html", "text"],
  "globals": {
    "ts-jest": {
      "tsconfig": {
        "module": "commonjs",
        "esModuleInterop": true,
        "allowSyntheticDefaultImports": true,
        "isolatedModules": true
      }
    }
  }
}
