Notes/tsconfig.base.json

27 lines
678 B
JSON
Raw Normal View History

2025-04-22 14:38:57 +03:00
{
"compilerOptions": {
"composite": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"importHelpers": true,
"isolatedModules": true,
"lib": ["ES2023"],
2025-04-22 14:38:57 +03:00
"module": "nodenext",
"moduleResolution": "nodenext",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
2025-04-22 14:38:57 +03:00
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"strict": true,
"target": "es2022",
"customConditions": ["development"],
"verbatimModuleSyntax": true,
"resolveJsonModule": true,
"downlevelIteration": true,
"esModuleInterop": true,
2025-04-22 14:38:57 +03:00
}
}