Files
gridpilot.gg/tsconfig.base.json
2025-12-15 13:46:07 +01:00

59 lines
2.4 KiB
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"lib": ["ES2022", "DOM"],
"moduleResolution": "node",
"esModuleInterop": true,
"jsx": "react-jsx",
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"alwaysStrict": true,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"baseUrl": ".",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"paths": {
"@/*": ["./*"],
"@/lib/*": ["apps/website/lib/*"],
"@/components/*": ["apps/website/components/*"],
"@/app/*": ["apps/website/app/*"],
"core/*": ["core/*"],
"apps/*": ["apps/*"],
"@gridpilot/shared-result": ["core/shared/result/Result.ts"],
"@gridpilot/shared": ["core/shared/index.ts"],
"@gridpilot/shared/application": ["core/shared/application"],
"@gridpilot/shared/application/*": ["core/shared/application/*"],
"@gridpilot/shared/presentation": ["core/shared/presentation"],
"@gridpilot/shared/presentation/*": ["core/shared/presentation/*"],
"@gridpilot/shared/domain": ["core/shared/domain"],
"@gridpilot/shared/domain/*": ["core/shared/domain/*"],
"@gridpilot/shared/errors": ["core/shared/errors"],
"@gridpilot/shared/errors/*": ["core/shared/errors/*"],
"@gridpilot/automation": ["core/automation/index.ts"],
"@gridpilot/automation/*": ["core/automation/*"],
"@gridpilot/identity": ["core/identity/index.ts"],
"@gridpilot/identity/*": ["core/identity/*"],
"@gridpilot/media": ["core/media/index.ts"],
"@gridpilot/media/*": ["core/media/*"],
"@gridpilot/racing": ["core/racing/index.ts"],
"@gridpilot/racing/*": ["core/racing/*"],
"@gridpilot/social": ["core/social/index.ts"],
"@gridpilot/social/*": ["core/social/*"],
"@gridpilot/testing-support": ["core/testing-support/index.ts"],
"@gridpilot/testing-support/*": ["core/testing-support/*"],
"@gridpilot/analytics": ["core/analytics/index.ts"],
"@gridpilot/analytics/*": ["core/analytics/*"],
"@gridpilot/notifications": ["core/notifications/application/index.ts"],
"@gridpilot/notifications/*": ["core/notifications/*"]
}
}
}