tg-bot-ts/tsconfig.json
2026-06-05 03:59:26 +01:00

34 lines
No EOL
975 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2020"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"outDir": "./dist",
"rootDir": "./src",
"baseUrl": ".",
"paths": {
"@src/*": ["src/*"],
"@data/*": ["data/*"],
"@tests/*": ["tests/*"],
"@messages/*": ["messages/*"],
"@tgHistory/*": ["data/tg-history/*"],
"@scripts/*": ["scripts/*"],
"@systems/*": ["src/systems/*"],
"@commands/*": ["src/commands/*"],
"@subcommands/*": ["src/subcommands/*"],
"@handlers/*": ["src/handlers/*"],
"@utils": ["src/utils"],
"@types": ["src/types"],
"@format": ["src/systems/format"],
"@emojis": ["src/systems/emojis"],
"@characters": ["src/systems/characters"],
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}