mirror of
https://github.com/Lifeforge-app/lifeforge.git
synced 2026-06-28 14:55:45 +00:00
- Create @lifeforge/configs package with shared client/module Vite configs and the `@` path alias resolver extracted from client/vite.config.ts - Create @lifeforge/federation package with module loading, federation provider, and route utilities moved out of the client app - Rename packages/lifeforge-log → packages/log - Rename packages/lifeforge-server-utils → packages/server-utils - Update all imports, tsconfig references, Dockerfiles, and workspace scripts to reflect the new package names and locations
20 lines
556 B
JSON
20 lines
556 B
JSON
{
|
|
"extends": "@lifeforge/configs/tsconfig/base.json",
|
|
"compilerOptions": {
|
|
"verbatimModuleSyntax": false,
|
|
"outDir": "./dist",
|
|
"allowUnusedLabels": false,
|
|
"emitDecoratorMetadata": true,
|
|
"useDefineForClassFields": false,
|
|
"noUnusedLocals": true,
|
|
"rootDir": "../",
|
|
"paths": {
|
|
"@constants": ["./src/core/constants"],
|
|
"@functions/*": ["./src/core/functions/*"],
|
|
"@schema": ["./src/core/schema"],
|
|
"@lib/*": ["./src/lib/*", "../apps/*"]
|
|
}
|
|
},
|
|
"include": ["./src/**/*", "../apps/**/server/**/*"]
|
|
}
|