2025-08-20 18:02:50 +09:00
|
|
|
{
|
2025-09-19 16:34:10 +09:00
|
|
|
"extends": "../../tsconfig.base.json",
|
2025-08-20 18:02:50 +09:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"noEmit": true,
|
2025-09-20 13:33:47 +09:00
|
|
|
"moduleResolution": "node",
|
2025-09-19 16:34:10 +09:00
|
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
2025-09-26 17:02:36 +09:00
|
|
|
"plugins": [{ "name": "next" }],
|
2025-09-01 15:11:42 +09:00
|
|
|
"baseUrl": ".",
|
2025-08-20 18:02:50 +09:00
|
|
|
"paths": {
|
2025-09-01 15:11:42 +09:00
|
|
|
"@/*": ["./src/*"],
|
2025-09-18 16:39:57 +09:00
|
|
|
"@/components/*": ["./src/components/*"],
|
|
|
|
|
"@/core/*": ["./src/core/*"],
|
|
|
|
|
"@/features/*": ["./src/features/*"],
|
|
|
|
|
"@/shared/*": ["./src/shared/*"],
|
|
|
|
|
"@/styles/*": ["./src/styles/*"],
|
|
|
|
|
"@/types/*": ["./src/types/*"],
|
2025-09-20 11:35:40 +09:00
|
|
|
"@/lib/*": ["./src/lib/*"],
|
2025-10-03 14:26:55 +09:00
|
|
|
"@customer-portal/domain": ["../../packages/domain/index.ts"],
|
|
|
|
|
"@customer-portal/domain/*": ["../../packages/domain/*"],
|
2025-09-20 11:35:40 +09:00
|
|
|
"@customer-portal/validation": ["../../packages/validation/src"],
|
|
|
|
|
"@customer-portal/validation/*": ["../../packages/validation/src/*"]
|
2025-08-30 15:47:48 +09:00
|
|
|
},
|
2025-09-19 16:34:10 +09:00
|
|
|
"allowJs": false
|
2025-08-20 18:02:50 +09:00
|
|
|
},
|
2025-09-26 17:02:36 +09:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
2025-09-09 18:19:54 +09:00
|
|
|
"exclude": ["node_modules"]
|
2025-08-20 18:02:50 +09:00
|
|
|
}
|