This commit is contained in:
2025-12-11 21:06:25 +01:00
parent c49ea2598d
commit ec3ddc3a5c
227 changed files with 3496 additions and 2083 deletions

View File

@@ -5,6 +5,11 @@
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"alwaysStrict": true,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
@@ -24,7 +29,14 @@
"@gridpilot/racing/*": ["../../packages/racing/*"],
"@gridpilot/social/*": ["../../packages/social/*"],
"@gridpilot/testing-support": ["../../packages/testing-support"],
"@gridpilot/media": ["../../packages/media"]
"@gridpilot/media": ["../../packages/media"],
"@gridpilot/shared": ["../../packages/shared/index.ts"],
"@gridpilot/shared/application": ["../../packages/shared/application"],
"@gridpilot/shared/application/*": ["../../packages/shared/application/*"],
"@gridpilot/shared/presentation": ["../../packages/shared/presentation"],
"@gridpilot/shared/presentation/*": ["../../packages/shared/presentation/*"],
"@gridpilot/shared/domain": ["../../packages/shared/domain"],
"@gridpilot/shared/errors": ["../../packages/shared/errors"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],