{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022"],
"outDir": "./dist",
"strict": false,
"noUncheckedIndexedAccess": false,
"exactOptionalPropertyTypes": false,
"noImplicitReturns": false,
"noImplicitOverride": false,
"noPropertyAccessFromIndexSignature": false,
"noFallthroughCasesInSwitch": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": false,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"noEmitOnError": false,
"types": [],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noImplicitAny": false,
"noImplicitThis": false,
"noImplicitUseStrict": false,
"strictBindCallApply": false,
"strictFunctionTypes": false,
"strictNullChecks": false,
"strictPropertyInitialization": false
},
"include": ["src/**/*", "benchmarks/src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts"]
}