35 lines
867 B
JSON
35 lines
867 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node", // Use "node" module resolution strategy
|
|
"forceConsistentCasingInFileNames": true,
|
|
"target": "ESNext",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "ESNext",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@components/*": ["./src/components/*"],
|
|
"@hooks/*": ["./src/hooks/*"],
|
|
"@utils/*": ["./src/utils/*"],
|
|
"@appTypes/*": ["./src/types/*"],
|
|
"@zod/*": ["./src/zod/*"],
|
|
"@prismaclient": ["./src/generated/prisma/client"],
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|