Files
dating-app-backend/tsconfig.json
Oscar c533dff6ed 🔧 fix(src/notifications): обновляет инициализацию Firebase в NotificationsService
 feat(src/main): изменяет название API на JustUs и обновляет описание

🔄 chore(package): обновляет зависимости и devDependencies в package.json

🔧 fix(tsconfig): добавляет игнорирование устаревших предупреждений в tsconfig.json
2026-06-24 17:44:22 +03:00

26 lines
624 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"ignoreDeprecations": "6.0",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"paths": {
"@/*": ["src/*"]
}
}
}