2025-08-30 17:11:10 +09:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2024",
|
|
|
|
|
"lib": ["ES2024"],
|
2025-09-01 15:11:42 +09:00
|
|
|
"module": "Node16",
|
|
|
|
|
"moduleResolution": "node16",
|
|
|
|
|
"baseUrl": "./",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["src/*"],
|
2025-09-17 18:43:43 +09:00
|
|
|
"@bff/core/*": ["src/core/*"],
|
|
|
|
|
"@bff/infra/*": ["src/infra/*"],
|
2025-09-18 14:52:26 +09:00
|
|
|
"@bff/modules/*": ["src/modules/*"],
|
2025-09-17 18:43:43 +09:00
|
|
|
"@bff/integrations/*": ["src/integrations/*"]
|
2025-09-01 15:11:42 +09:00
|
|
|
},
|
2025-08-30 17:11:10 +09:00
|
|
|
"strict": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"noImplicitOverride": false,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
2025-09-11 13:17:10 +09:00
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
|
"types": ["node"],
|
2025-09-18 12:34:26 +09:00
|
|
|
"typeRoots": ["./node_modules/@types"],
|
|
|
|
|
|
|
|
|
|
// Memory optimization settings
|
|
|
|
|
"preserveWatchOutput": true,
|
|
|
|
|
"assumeChangesOnlyAffectDirectDependencies": true,
|
|
|
|
|
"disableReferencedProjectLoad": false,
|
|
|
|
|
"disableSolutionSearching": false,
|
|
|
|
|
"disableSourceOfProjectReferenceRedirect": false
|
|
|
|
|
},
|
|
|
|
|
"ts-node": {
|
|
|
|
|
"transpileOnly": true,
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "CommonJS"
|
|
|
|
|
}
|
2025-08-30 17:11:10 +09:00
|
|
|
}
|
|
|
|
|
}
|