This commit is contained in:
2025-12-16 11:52:26 +01:00
parent ce82b7822b
commit 9a891ac8b3
586 changed files with 1320 additions and 1563 deletions

View File

@@ -20,6 +20,7 @@
"assumeChangesOnlyAffectDirectDependencies": true,
"noEmit": false,
"declaration": true,
"declarationMap": true,
"removeComments": true,
"sourceMap": true,
"outDir": "./dist",
@@ -28,56 +29,12 @@
"types": ["node", "express", "jest"],
"strictPropertyInitialization": false,
"paths": {
"@core/shared/*": [
"../../core/shared/*"
],
"@core/shared/application/*": [
"../../core/shared/application/*"
],
"@core/payments/*": [
"../../core/payments/*"
],
"@core/payments/application/*": [
"../../core/payments/application/*"
],
"@core/payments/domain/*": [
"../../core/payments/domain/*"
],
"@core/racing/*": [
"../../core/racing/*"
],
"@core/league/*": [
"../../core/league/*"
],
"@core/analytics/*": [
"../../core/analytics/*"
],
"@core/analytics/domain/repositories/*": [
"../../core/analytics/domain/repositories/*"
],
"@core/analytics/domain/entities/*": [
"../../core/analytics/domain/entities/*"
],
"@core/core/identity/domain/repositories/*": [
"../../core/identity/domain/repositories/*"
],
"@core/core/identity/domain/services/*": [
"../../core/identity/domain/services/*"
],
"@core/core/identity/domain/entities/*": [
"../../core/identity/domain/entities/*"
],
"@core/core/shared/logging/*": [
"../../core/shared/logging/*"
],
"@adapters/*": [
"../../adapters/*"
],
"@nestjs/testing": [
"./node_modules/@nestjs/testing"
]
"@/*": ["./*"],
"@core/*": ["../../core/*"],
"@adapters/*": ["../../adapters/*"],
"@testing/*": ["../../testing/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.mock.ts"]
"exclude": ["node_modules", "dist", "**/*.mock.ts", "**/*.spec.ts", "**/*.test.ts"]
}