2026-03-25 22:05:06 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2017",
|
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"plugins": [
|
|
|
|
|
{
|
|
|
|
|
"name": "next"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"paths": {
|
2026-04-01 16:14:52 +00:00
|
|
|
"@/*": ["./*"],
|
|
|
|
|
"@/components/*": ["./src/components/*"],
|
|
|
|
|
"@/lib/*": ["./src/lib/*"],
|
|
|
|
|
"@/hooks/*": ["./src/hooks/*"],
|
|
|
|
|
"@/app/*": ["./src/app/*"],
|
|
|
|
|
"@/constants": ["./src/constants.ts"]
|
2026-03-25 22:05:06 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"next-env.d.ts",
|
|
|
|
|
"**/*.ts",
|
|
|
|
|
"**/*.tsx",
|
|
|
|
|
".next/types/**/*.ts",
|
|
|
|
|
".next/dev/types/**/*.ts",
|
|
|
|
|
"**/*.mts"
|
|
|
|
|
],
|
|
|
|
|
"exclude": ["node_modules"]
|
|
|
|
|
}
|