Assist_Design/tsconfig.json

46 lines
1.1 KiB
JSON
Raw Normal View History

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