// Cypress tests (.spec.tsx files) need a separate config to avoid clashing types with jest, see README for more details
{
  "extends": "../tsconfig.json",
  "compilerOptions": {
    "noEmit": true,
    "types": [
      "./support",
      "../../../node_modules/@testing-library/cypress",
      "../../../node_modules/cypress",
      "../../../node_modules/cypress-real-events"
    ]
  },
  "include": ["../stubs-*.d.ts", "../src/**/tests/*.spec.tsx", "../src/**/tests/*.spec.ts"],
  "exclude": ["../src/docs/*"]
}
