27 lines
563 B
JSON
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"]
|
|
}
|