{
  "compilerOptions": {
    /* Language and Environment */
    "target": "es2021",
    "lib": ["ES2021"],

    /* Modules */
    "module": "commonjs",
    "rootDir": "./src",

    /* JavaScript Support */
    "allowJs": true,
    "checkJs": true,

    /* Emit */
    "outDir": "./build",
    "sourceMap": false,
    "removeComments": true,

    /* Interop Constraints */
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,

    /* Type Checking */
    "strict": true,
    "skipLibCheck": true,
    "noUnusedLocals": true,
    "noUnusedParameters": true
  },
  "include": ["src/**/*"],
  "exclude": [
    "node_modules",
    "build",
    "coverage",
    "**/__tests__",
    "**/*.spec.ts",
    "**/*.test.ts"
  ]
}