privateapi-besu/tsconfig.json

24 lines
602 B
JSON
Raw Normal View History

2025-07-31 08:50:10 +00:00
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"esModuleInterop": true,
2025-07-31 08:50:10 +00:00
"target": "ES2023",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
2025-07-31 08:50:10 +00:00
"strictBindCallApply": false,
"noFallthroughCasesInSwitch": true
2025-07-31 08:50:10 +00:00
}
}