{
  "compilerOptions": {
    "target": "ES2022",
    "module": "ESNext",
    "lib": ["dom", "dom.iterable", "esnext"],
    "jsx": "react-jsx",
    "declaration": true,
    "declarationDir": "./build",
    "rootDir": "./src",
    "moduleResolution": "bundler",
    "strict": true,
    "esModuleInterop": true,
    "skipLibCheck": true,
    "forceConsistentCasingInFileNames": true,
    "outDir": "build",
    "types": ["jest", "node"]
  },
  "include": ["src/**/*", "src/declarations.d.ts"],
  "exclude": ["node_modules", "build", "tests", "**/*.test.ts", "**/*.test.tsx"]
}