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/*"],
|
|
|
|
|
"@customer-portal/shared": ["../../packages/shared/dist/index"],
|
|
|
|
|
"@customer-portal/shared/*": ["../../packages/shared/dist/*"]
|
|
|
|
|
},
|
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"],
|
|
|
|
|
"typeRoots": ["./node_modules/@types"]
|
2025-08-30 17:11:10 +09:00
|
|
|
}
|
|
|
|
|
}
|