Files
hh-auto-reply/tsconfig.json
2026-05-26 10:17:55 +03:00

17 lines
306 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@bot": ["src/bot-singleton"],
"@prisma": ["src/prisma"]
},
"target": "ES2020",
"module": "ESNext",
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true
}
}