Skip to main content
DevTools24

tsconfig.json Generator

Generate TypeScript configuration files with presets for different project types. Customize compiler options.

TypeScript Configuration - Détails techniques

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.

Alternative en ligne de commande

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

Référence

Voir la spécification officielle