Files
hh-auto-reply/tsconfig.json

19 lines
365 B
JSON

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