2026-02-01 22:25:28 +05:30
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2017",
|
2026-02-07 20:29:50 +05:30
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2026-02-01 22:25:28 +05:30
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
2026-02-02 01:01:13 +05:30
|
|
|
"jsx": "react-jsx",
|
2026-02-01 22:25:28 +05:30
|
|
|
"incremental": true,
|
2026-02-02 01:01:13 +05:30
|
|
|
"plugins": [
|
|
|
|
|
{
|
|
|
|
|
"name": "next"
|
|
|
|
|
}
|
|
|
|
|
],
|
2026-02-01 22:25:28 +05:30
|
|
|
"paths": {
|
2026-02-07 20:29:50 +05:30
|
|
|
"@/*": ["./src/*"]
|
2026-02-08 17:31:30 +00:00
|
|
|
},
|
2026-02-08 17:41:04 +00:00
|
|
|
"types": ["vitest", "vitest/globals", "@testing-library/jest-dom/vitest"]
|
2026-02-01 22:25:28 +05:30
|
|
|
},
|
2026-02-02 01:01:13 +05:30
|
|
|
"include": [
|
|
|
|
|
"next-env.d.ts",
|
|
|
|
|
"**/*.ts",
|
|
|
|
|
"**/*.tsx",
|
|
|
|
|
".next/types/**/*.ts",
|
|
|
|
|
".next/dev/types/**/*.ts"
|
|
|
|
|
],
|
2026-02-07 20:29:50 +05:30
|
|
|
"exclude": ["node_modules"]
|
2026-02-01 22:25:28 +05:30
|
|
|
}
|