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-03 03:14:23 +03:00
|
|
|
"noImplicitAny": true,
|
2025-04-22 14:38:57 +03:00
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"target": "es2022",
|
2025-04-29 10:53:08 +03:00
|
|
|
"customConditions": ["development"],
|
2025-05-03 03:14:23 +03:00
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"esModuleInterop": true,
|
2025-04-22 14:38:57 +03:00
|
|
|
}
|
|
|
|
}
|