fastify-openapi-glue
Version:
generate a fastify configuration from an openapi specification
33 lines (27 loc) • 655 B
JSON
{
"compilerOptions": {
// Type Checking
"strict": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
// Module
"module": "nodenext",
"noUncheckedSideEffectImports": true,
// Language and Environment
"target": "esnext",
"moduleDetection": "force",
// Emit
"noEmit": true,
// Interop Constraints
"isolatedModules": true,
"verbatimModuleSyntax": true,
// Completeness
"skipLibCheck": true
}
}