{
  "compilerOptions": {
    "target": "ES2020",
    "module": "commonjs",
    "lib": [
      "ES2020",
      "esnext",
      "esnext.asynciterable",
      "ES2022",
      "DOM"
    ],
    "downlevelIteration": true,
    "allowJs": true,
    "sourceMap": true,
    "outDir": "build",
    "strict": true,
    "noImplicitAny": false,
    "skipLibCheck": true,
    "strictNullChecks": true,
    "strictFunctionTypes": true,
    "strictPropertyInitialization": true,
    "noImplicitThis": true,
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "noImplicitReturns": true,
    "noFallthroughCasesInSwitch": true,
    "types": [
      "mocha"
    ],
    "esModuleInterop": true,
    "experimentalDecorators": true
  },
  "include": [
    "./src/**/*",
    "./test/**/*"
  ]
}