2026-05-08 01:23:27 +05:30
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
|
"allowJs": false,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"plugins": [{ "name": "next" }],
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": { "@/*": ["./*"] }
|
|
|
|
|
},
|
2026-05-08 14:14:26 +05:30
|
|
|
"include": ["next-env.d.ts", "types/**/*.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
2026-05-08 01:23:27 +05:30
|
|
|
"exclude": ["node_modules", "dist"]
|
|
|
|
|
}
|