84 lines
2.4 KiB
JSON
84 lines
2.4 KiB
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"lib": ["es2022", "dom"],
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": false,
|
|
"strictNullChecks": false,
|
|
"alwaysStrict": false,
|
|
"exactOptionalPropertyTypes": false,
|
|
"noUncheckedIndexedAccess": false,
|
|
"assumeChangesOnlyAffectDirectDependencies": true,
|
|
"noEmit": false,
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"incremental": true,
|
|
"baseUrl": ".",
|
|
"types": ["node", "express", "jest"],
|
|
"strictPropertyInitialization": false,
|
|
"paths": {
|
|
"@gridpilot/shared/*": [
|
|
"../../core/shared/*"
|
|
],
|
|
"@gridpilot/shared/application/*": [
|
|
"../../core/shared/application/*"
|
|
],
|
|
"@gridpilot/payments/*": [
|
|
"../../core/payments/*"
|
|
],
|
|
"@gridpilot/payments/application/*": [
|
|
"../../core/payments/application/*"
|
|
],
|
|
"@gridpilot/payments/domain/*": [
|
|
"../../core/payments/domain/*"
|
|
],
|
|
"@gridpilot/racing/*": [
|
|
"../../core/racing/*"
|
|
],
|
|
"@gridpilot/league/*": [
|
|
"../../core/league/*"
|
|
],
|
|
"@gridpilot/analytics/*": [
|
|
"../../core/analytics/*"
|
|
],
|
|
"@gridpilot/analytics/domain/repositories/*": [
|
|
"../../core/analytics/domain/repositories/*"
|
|
],
|
|
"@gridpilot/analytics/domain/entities/*": [
|
|
"../../core/analytics/domain/entities/*"
|
|
],
|
|
"@gridpilot/core/identity/domain/repositories/*": [
|
|
"../../core/identity/domain/repositories/*"
|
|
],
|
|
"@gridpilot/core/identity/domain/services/*": [
|
|
"../../core/identity/domain/services/*"
|
|
],
|
|
"@gridpilot/core/identity/domain/entities/*": [
|
|
"../../core/identity/domain/entities/*"
|
|
],
|
|
"@gridpilot/core/shared/logging/*": [
|
|
"../../core/shared/logging/*"
|
|
],
|
|
"adapters/*": [
|
|
"../../adapters/*"
|
|
],
|
|
"@nestjs/testing": [
|
|
"./node_modules/@nestjs/testing"
|
|
]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "**/*.mock.ts"]
|
|
}
|