biome/benchmark/tsconfig.json
Emanuele Stoppa 836fa1e94c
fix: resolve settings based on path (#6175)
Co-authored-by: arendjr <533294+arendjr@users.noreply.github.com>
2025-05-30 12:09:24 +01:00

25 lines
544 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"lib": ["ES2021"],
"module": "Node16",
"target": "ES2021",
"noEmit": true,
"types": [],
"esModuleInterop": true,
"isolatedModules": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"verbatimModuleSyntax": true,
"allowUnreachableCode": false,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": false,
"noImplicitOverride": true,
"noImplicitReturns": true,
"strict": true
}
}