2025-04-22 14:38:57 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"composite": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"emitDeclarationOnly": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"isolatedModules": true,
|
2025-05-03 03:14:23 +03:00
|
|
|
"lib": ["ES2023"],
|
2025-04-22 14:38:57 +03:00
|
|
|
"module": "nodenext",
|
|
|
|
"moduleResolution": "nodenext",
|
|
|
|
"noEmitOnError": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2025-05-21 13:31:07 +03:00
|
|
|
"noImplicitAny": false, // TODO: Re-enable it at some point.
|
2025-05-07 21:39:07 +03:00
|
|
|
"noImplicitOverride": false, // TODO: Re-enable it at some point.
|
|
|
|
"noImplicitReturns": false, // TODO: Re-enable it at some point.
|
|
|
|
"noUnusedLocals": false, // TODO: Re-enable it at some point.
|
2025-04-22 14:38:57 +03:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"target": "es2022",
|
2025-04-29 10:53:08 +03:00
|
|
|
"customConditions": ["development"],
|
2025-05-27 23:43:28 +03:00
|
|
|
"verbatimModuleSyntax": false, // TODO: Re-enable it when migrating back to ESM.
|
2025-05-03 03:14:23 +03:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"esModuleInterop": true,
|
2025-04-22 14:38:57 +03:00
|
|
|
}
|
|
|
|
}
|