Skip to main content
DevTools24

مولد tsconfig.json

إنشاء ملفات تكوين TypeScript مع إعدادات مسبقة لأنواع مشاريع مختلفة. تخصيص خيارات المترجم.

TypeScript Configuration - التفاصيل التقنية

tsconfig.json configures the TypeScript compiler. Key options include target (ES version), module (module system), strict (type checking), and paths (import aliases). Use extends to inherit from base configurations.

بديل سطر الأوامر

# Initialize tsconfig.json\nnpx tsc --init\n\n# Compile with options\nnpx tsc --strict --noEmit

المرجع

عرض المواصفات الرسمية