Files
quicklanch-server/tsconfig.json
T

22 lines
428 B
JSON
Raw Normal View History

2026-04-02 21:27:09 +06:00
{
"compilerOptions": {
"target": "ES2023",
"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": [
"src/**/*"
2026-04-02 21:27:09 +06:00
],
"exclude": [
"node_modules",
"dist",
"build",
"generated/prisma"
]
}