Assist_Design/apps/portal/tsconfig.json
2025-08-20 18:02:50 +09:00

27 lines
563 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
// Next.js with ES2024 for 2025 production
"target": "ES2024",
"lib": ["DOM", "DOM.Iterable", "ES2024"],
"module": "ESNext",
"moduleResolution": "bundler",
// Next.js requirements
"jsx": "preserve",
"noEmit": true,
"plugins": [
{
"name": "next"
}
],
// Path mappings
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}