This commit is contained in:
2025-12-12 01:11:36 +01:00
parent ec3ddc3a5c
commit 6a88fe93ab
125 changed files with 1513 additions and 803 deletions

View File

@@ -1,21 +1,11 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"target": "ES2022",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"alwaysStrict": true,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"baseUrl": ".",
"jsx": "preserve",
"incremental": true,
"plugins": [
@@ -25,11 +15,19 @@
],
"paths": {
"@/*": ["./*"],
"@/lib/*": ["./lib/*"],
"@/components/*": ["./components/*"],
"@/app/*": ["./app/*"],
"@gridpilot/identity": ["../../packages/identity/index.ts"],
"@gridpilot/identity/*": ["../../packages/identity/*"],
"@gridpilot/racing": ["../../packages/racing/index.ts"],
"@gridpilot/racing/*": ["../../packages/racing/*"],
"@gridpilot/social": ["../../packages/social/index.ts"],
"@gridpilot/social/*": ["../../packages/social/*"],
"@gridpilot/testing-support": ["../../packages/testing-support"],
"@gridpilot/media": ["../../packages/media"],
"@gridpilot/testing-support": ["../../packages/testing-support/index.ts"],
"@gridpilot/testing-support/*": ["../../packages/testing-support/*"],
"@gridpilot/media": ["../../packages/media/index.ts"],
"@gridpilot/media/*": ["../../packages/media/*"],
"@gridpilot/shared": ["../../packages/shared/index.ts"],
"@gridpilot/shared/application": ["../../packages/shared/application"],
"@gridpilot/shared/application/*": ["../../packages/shared/application/*"],
@@ -40,5 +38,5 @@
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
"exclude": ["node_modules", ".next"]
}