2025-02-24 12:37:15 +00:00
|
|
|
{
|
2025-05-31 23:25:51 +01:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"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,
|
|
|
|
|
"baseUrl": "src",
|
|
|
|
|
"plugins": [
|
|
|
|
|
{
|
|
|
|
|
"name": "next"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"paths": {
|
|
|
|
|
"@components/*": [
|
|
|
|
|
"./components/*"
|
|
|
|
|
],
|
|
|
|
|
"@hooks/*": [
|
|
|
|
|
"./hooks/*"
|
|
|
|
|
],
|
|
|
|
|
"@utils/*": [
|
|
|
|
|
"./utils/*"
|
|
|
|
|
],
|
|
|
|
|
"@appTypes/*": [
|
|
|
|
|
"./types/*"
|
|
|
|
|
],
|
|
|
|
|
"@zod/*": [
|
|
|
|
|
"./zod/*"
|
|
|
|
|
],
|
|
|
|
|
"@prismaclient": [
|
|
|
|
|
"./generated/prisma/client"
|
|
|
|
|
],
|
|
|
|
|
"@/*": [
|
|
|
|
|
"./*"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"next-env.d.ts",
|
|
|
|
|
"**/*.ts",
|
|
|
|
|
"**/*.tsx",
|
|
|
|
|
".next/types/**/*.ts"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules"
|
|
|
|
|
]
|
|
|
|
|
}
|