{ "compilerOptions": { // Modern JavaScript target for 2025 production "target": "ES2024", "lib": ["ES2024", "DOM", "DOM.Iterable"], // Module system - modern ESNext with Node16+ resolution "module": "ESNext", "moduleResolution": "bundler", // Strict type checking for better code quality "strict": true, "noImplicitAny": true, "strictNullChecks": true, "strictBindCallApply": true, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, "noImplicitOverride": true, // Module resolution "esModuleInterop": true, "allowSyntheticDefaultImports": true, "forceConsistentCasingInFileNames": true, "resolveJsonModule": true, "isolatedModules": true, // Performance and compatibility "skipLibCheck": true, "allowJs": true, // Build settings "incremental": true, "declaration": true, "declarationMap": true, "sourceMap": true }, // This is a workspace root - individual packages extend this "files": [], "references": [ { "path": "./apps/portal" }, { "path": "./apps/bff" }, { "path": "./packages/shared" } ] }