2025-02-24 12:37:15 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-03-23 15:24:10 +00:00
|
|
|
"moduleResolution": "node", // Use "node" module resolution strategy
|
2025-03-03 14:52:15 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"target": "ESNext",
|
2025-02-24 12:37:15 +00:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"esModuleInterop": true,
|
2025-03-03 14:52:15 +00:00
|
|
|
"module": "ESNext",
|
2025-02-24 12:37:15 +00:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"plugins": [
|
|
|
|
|
{
|
|
|
|
|
"name": "next"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"paths": {
|
2025-03-23 15:24:10 +00:00
|
|
|
"@/*": ["./src/*"],
|
|
|
|
|
"@components/*": ["./src/components/*"],
|
|
|
|
|
"@hooks/*": ["./src/hooks/*"],
|
|
|
|
|
"@utils/*": ["./src/utils/*"],
|
|
|
|
|
"@appTypes/*": ["./src/types/*"]
|
2025-02-24 12:37:15 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
|
|
|
"exclude": ["node_modules"]
|
|
|
|
|
}
|