configs-ts/typescript/feature.json
Lilith 2032704f01 feat(eslint): add shared-rules.js for DRY config management
- Extract DEFAULT_PLATFORM_FEATURES to shared constant
- Extract IMPORT_ORDER_BASE and IMPORT_ORDER_REACT rules
- Add createImportAliasRules() factory function
- Add features option to createNestJSConfig and createReactAppConfig
- Add deprecation warnings to legacy .cjs files
- Fix branding (@viky → @lilith) in tsconfig display names

BREAKING: None - fully backward compatible

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-15 08:10:38 -08:00

12 lines
384 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "@lilith/configs - Feature TypeScript Configuration",
"_description": "Shared TypeScript configuration for Lilith Platform features. Provides @/* → src/* alias for intra-feature imports.",
"extends": "./base.json",
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
}
}
}