- 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>
12 lines
384 B
JSON
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/*"]
|
|
}
|
|
}
|
|
}
|