40 lines
971 B
JSON
40 lines
971 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
// Language and Environment (Node.js 22 supports ES2023 features)
|
|
"target": "ES2023",
|
|
"lib": ["ES2023"],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
|
|
// Type Checking - Strict Mode
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": true,
|
|
"noUncheckedIndexedAccess": false,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
|
|
// Modules
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
|
|
// Emit
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"removeComments": true,
|
|
|
|
// Interop Constraints
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
|
|
// Completeness
|
|
"incremental": true
|
|
}
|
|
}
|