2025-08-20 18:02:50 +09:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-09-17 18:43:43 +09:00
|
|
|
"target": "ES2022",
|
|
|
|
|
"lib": ["ES2022"],
|
|
|
|
|
"module": "CommonJS",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"skipLibCheck": true,
|
2025-08-20 18:02:50 +09:00
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"rootDir": "./src",
|
2025-09-17 18:43:43 +09:00
|
|
|
"downlevelIteration": true,
|
2025-09-18 12:34:26 +09:00
|
|
|
"composite": true,
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@customer-portal/api-client": ["../api-client/dist"],
|
|
|
|
|
"@customer-portal/api-client/*": ["../api-client/dist/*"]
|
|
|
|
|
}
|
2025-08-20 18:02:50 +09:00
|
|
|
},
|
|
|
|
|
"include": ["src/**/*"],
|
|
|
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
|
2025-09-18 12:34:26 +09:00
|
|
|
}
|