chore: project init

This commit is contained in:
mahyargdz
2025-01-19 09:35:47 +03:30
commit 3fb52961c7
17 changed files with 8052 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"compilerOptions": {
"target": "ES2024",
"module": "NodeNext",
"lib": ["ES2024"],
"moduleResolution": "NodeNext",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noEmitOnError": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowUnreachableCode": false,
"removeComments": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"strictPropertyInitialization": false,
"allowSyntheticDefaultImports": true,
"strictNullChecks": true,
"skipLibCheck": true
}
}