The @lilith/configs package on the Forgejo registry lacks proper exports field configuration for subpath imports like @lilith/configs/typescript/react. This caused CI typecheck failures. Updated 13 packages to extend from the local tsconfig.base.json which has all the same settings. Affected packages: - @packages/@hooks/attribute-hooks - @packages/@hooks/messaging-hooks - @packages/@hooks/react-hooks - @packages/@hooks/react-query-utils - @packages/@infrastructure/api-client - @packages/@infrastructure/health-client - @packages/@providers/auth-provider - features/analytics/frontend-admin - features/i18n/react - features/webmap/backend-api - features/webmap/frontend-public - features/webmap/router - features/webmap/shared 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
11 lines
236 B
JSON
11 lines
236 B
JSON
{
|
|
"extends": "../../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"declaration": true,
|
|
"declarationMap": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|