{ "extends": "../../tsconfig.base.json", "compilerOptions": { // NestJS specific settings "emitDecoratorMetadata": true, "experimentalDecorators": true, "strictPropertyInitialization": false, // Path mappings for clean imports "baseUrl": ".", "paths": { "@/*": ["src/*"], "@bff/core/*": ["src/core/*"], "@bff/infra/*": ["src/infra/*"], "@bff/modules/*": ["src/modules/*"], "@bff/integrations/*": ["src/integrations/*"] }, // Type checking "noEmit": true, "types": ["node"], "typeRoots": ["./node_modules/@types"] }, "ts-node": { "transpileOnly": true, "compilerOptions": { "module": "commonjs" } }, "include": ["src/**/*", "scripts/**/*", "test/**/*"], "exclude": ["node_modules", "dist"] }