{ "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"] }