42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"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,
|
|
|
|
// Build settings
|
|
"incremental": true
|
|
},
|
|
|
|
// This is a workspace root - individual packages extend this
|
|
"files": [],
|
|
"references": [
|
|
{ "path": "./apps/portal" },
|
|
{ "path": "./apps/bff" },
|
|
{ "path": "./packages/shared" }
|
|
]
|
|
}
|