{ "extends": "../tsconfig.base.json", "compilerOptions": { "baseUrl": "../", // Base URL is the project root "paths": { "@gridpilot/core/*": ["core/*"], "@gridpilot/shared/*": ["core/shared/*"], "@gridpilot/identity/application/dto/*": ["core/identity/application/dto/*"], "@gridpilot/identity/application/ports/*": ["core/identity/application/ports/*"], "@gridpilot/identity/domain/repositories/*": ["core/identity/domain/repositories/*"], "@gridpilot/identity/domain/services/*": ["core/identity/domain/services/*"], "@gridpilot/racing/domain/repositories/*": ["core/racing/domain/repositories/*"], "@gridpilot/racing/domain/entities/*": ["core/racing/domain/entities/*"], "@gridpilot/racing/application/ports/*": ["core/racing/application/ports/*"] }, "composite": true, "outDir": "./dist", "rootDir": "../" // Root directory is the project root }, "include": ["**/*", "../core/**/*"], "exclude": ["node_modules", "dist", "**/*.spec.ts"] }