Небольшие правки

This commit is contained in:
Georgiy Syralev
2025-09-15 18:29:42 +03:00
parent c954b5268e
commit a7a24dac88
161 changed files with 443624 additions and 16 deletions

18
ospabhost/tsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "Node16",
"lib": ["ES2020"],
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node16",
"resolveJsonModule": true,
"noEmit": true,
"verbatimModuleSyntax": false
},
"include": ["./backend/src"],
"exclude": ["node_modules"]
}