roleping-bot/tsconfig.json
2025-11-21 19:04:14 +06:00

19 lines
426 B
JSON

{
"compilerOptions": {
"target": "es2024",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"rootDir": "./src",
"module": "nodenext",
"moduleResolution": "nodenext",
"paths": {
"@/*": ["./src/*"]
},
"strict": true,
"outDir": "./dist",
"sourceMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
}
}