Extend from centralized TypeScript configs instead of duplicating settings. Reduces maintenance burden and ensures consistency. - tsconfig.base.json extends @lilith/configs/typescript/base - React packages extend @lilith/configs/typescript/react 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
11 lines
212 B
JSON
11 lines
212 B
JSON
{
|
|
"extends": "@lilith/configs/typescript/react",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|