2026-04-29 19:49:06 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"module": "CommonJS",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"ignoreDeprecations": "5.0",
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"rootDir": "./src",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"resolveJsonModule": true,
|
2026-05-08 20:45:16 +08:00
|
|
|
"types": ["node", "express", "cors", "multer"],
|
2026-04-29 19:49:06 +02:00
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["./src/*"]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*"],
|
2026-07-20 10:42:28 -07:00
|
|
|
"exclude": ["node_modules", "dist", "src/**/*.test.ts", "src/**/__tests__/**"]
|
2026-04-29 19:49:06 +02:00
|
|
|
}
|