2026-04-02 21:27:09 +06:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2023",
|
2026-04-21 03:12:39 +06:00
|
|
|
"module": "nodenext",
|
|
|
|
|
"moduleResolution": "nodenext",
|
|
|
|
|
"rootDir": "./src",
|
2026-04-02 21:27:09 +06:00
|
|
|
"outDir": "./dist",
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"skipLibCheck": true
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
2026-04-21 03:12:39 +06:00
|
|
|
"src/**/*"
|
2026-04-02 21:27:09 +06:00
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"dist",
|
|
|
|
|
"build",
|
|
|
|
|
"generated/prisma"
|
|
|
|
|
]
|
|
|
|
|
}
|