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": {
|
2025-12-10 13:59:41 +09:00
|
|
|
"target": "ES2022",
|
2025-12-12 14:35:19 +09:00
|
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
2025-12-10 13:59:41 +09:00
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "Bundler",
|
2025-08-20 18:02:50 +09:00
|
|
|
"jsx": "preserve",
|
|
|
|
|
"noEmit": true,
|
2025-09-26 17:02:36 +09:00
|
|
|
"plugins": [{ "name": "next" }],
|
2025-12-12 14:35:19 +09:00
|
|
|
"composite": true,
|
|
|
|
|
"tsBuildInfoFile": ".typecheck/tsconfig.tsbuildinfo",
|
2025-09-01 15:11:42 +09:00
|
|
|
"baseUrl": ".",
|
2025-08-20 18:02:50 +09:00
|
|
|
"paths": {
|
2025-12-10 13:59:41 +09:00
|
|
|
"@/*": ["./src/*"]
|
|
|
|
|
}
|
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
|
|
|
}
|