@bfra.me/tsconfig
Version:
Shared TypeScript configuration for bfra.me
32 lines (31 loc) • 860 B
JSON
{
"$schema": "http://json.schemastore.org/tsconfig",
"display": "@bfra.me/tsconfig",
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"isolatedModules": true,
"lib": ["ES2023"],
"module": "Preserve",
"moduleResolution": "Bundler",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"preserveConstEnums": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "ES2022",
"verbatimModuleSyntax": true
}
}