wip
This commit is contained in:
56
tsconfig.base.json
Normal file
56
tsconfig.base.json
Normal file
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES2022",
|
||||
"module": "ESNext",
|
||||
"lib": ["ES2022", "DOM"],
|
||||
"moduleResolution": "node",
|
||||
"esModuleInterop": true,
|
||||
"strict": true,
|
||||
"noImplicitAny": true,
|
||||
"noImplicitThis": true,
|
||||
"strictNullChecks": true,
|
||||
"alwaysStrict": true,
|
||||
"exactOptionalPropertyTypes": true,
|
||||
"noUncheckedIndexedAccess": true,
|
||||
"skipLibCheck": false,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"noEmit": true,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*": ["./*"],
|
||||
"@/lib/*": ["apps/website/lib/*"],
|
||||
"@/components/*": ["apps/website/components/*"],
|
||||
"@/app/*": ["apps/website/app/*"],
|
||||
"packages/*": ["packages/*"],
|
||||
"apps/*": ["apps/*"],
|
||||
"@gridpilot/shared-result": ["packages/shared/result/Result.ts"],
|
||||
"@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/domain/*": ["packages/shared/domain/*"],
|
||||
"@gridpilot/shared/errors": ["packages/shared/errors"],
|
||||
"@gridpilot/shared/errors/*": ["packages/shared/errors/*"],
|
||||
"@gridpilot/automation": ["packages/automation/index.ts"],
|
||||
"@gridpilot/automation/*": ["packages/automation/*"],
|
||||
"@gridpilot/identity": ["packages/identity/index.ts"],
|
||||
"@gridpilot/identity/*": ["packages/identity/*"],
|
||||
"@gridpilot/media": ["packages/media/index.ts"],
|
||||
"@gridpilot/media/*": ["packages/media/*"],
|
||||
"@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/index.ts"],
|
||||
"@gridpilot/testing-support/*": ["packages/testing-support/*"],
|
||||
"@gridpilot/analytics": ["packages/analytics/index.ts"],
|
||||
"@gridpilot/analytics/*": ["packages/analytics/*"],
|
||||
"@gridpilot/notifications": ["packages/notifications/application/index.ts"],
|
||||
"@gridpilot/notifications/*": ["packages/notifications/*"]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user